[9e8054]: / docs / source / _example_APP / cell_cycle.ipynb

Download this file

728 lines (727 with data), 2.6 MB

{
 "cells": [
  {
   "cell_type": "markdown",
   "id": "3fad395c-641e-4a78-909b-0d4bd15943dc",
   "metadata": {},
   "source": [
    "## Introduction"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "6c652f88-09b2-42b5-868e-3bd5302ee843",
   "metadata": {},
   "source": [
    "In this example, we will show how to explore the cell-cycle dataset of CCTD-U using AggMap.\n",
    "\n",
    "The **CCTD-U[1]** dataset is a cell-cycle transcriptome data of U2OS cells, consisting of the expression levels of 5162 genes at 5 different cell cycle stages (G1, G1 / S, S, G2, M). This dataset was transformed using z-score standard scaling. \n",
    "\n",
    "By fitting on the CCTD-U dataset, AggMap can transform it into feature maps (Fmaps). Visualization of AggMap multi-channel Fmaps of the cell-cycle **CCTD-U** dataset at different cell replication phases indicated that multi-channel Fmaps can easily select stage-specific genes. The stage -specific genes in the five cell-cycle phases can be easily aggregated into hot-zones in the single-channel Fmaps based on their correlations, while the multi-channel Fmaps further separate the phase-specific genes into different channels. Therefore, the multi-channel Fmaps facilitate group-specific feature learning or feature selective learning by AggMapNet. \n",
    "\n",
    "By the hierarchical clustering-guided channel splits, each cluster (group) of feature points may be separately embedded into a different Fmap channel. More clusters enable more fine-grained separations of feature points into groups. \n",
    "\n",
    "\n",
    "* [1]. Hao, Q., Zong, X., Sun, Q., Lin, Y.-C., Song, Y.J., Hashemikhabir, S., Hsu, R.Y., Kamran, M., Chaudhary, R. and Tripathi, V. (2020) The S-phase-induced lncRNA SUNO1 promotes cell proliferation by controlling YAP1/Hippo signaling pathway. Elife, 9, e55102."
   ]
  },
  {
   "cell_type": "markdown",
   "id": "79fcb5ef-1cc8-4b0d-b2c2-40130d433df0",
   "metadata": {},
   "source": [
    "## Read data and pre-fit on AggMap"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "id": "7341b166-c260-4523-9ae1-ae8e6519aa54",
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "2022-08-01 16:25:56.434248: I tensorflow/core/util/util.cc:169] oneDNN custom operations are on. You may see slightly different numerical results due to floating-point round-off errors from different computation orders. To turn them off, set the environment variable `TF_ENABLE_ONEDNN_OPTS=0`.\n"
     ]
    }
   ],
   "source": [
    "import os\n",
    "import pandas as pd\n",
    "import numpy as np\n",
    "import seaborn as sns\n",
    "import tensorflow as tf\n",
    "from sklearn.utils import shuffle\n",
    "from sklearn.model_selection import train_test_split\n",
    "from sklearn.preprocessing import StandardScaler\n",
    "import matplotlib.pyplot as plt\n",
    "from aggmap import AggMap, show"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "id": "ed04e4ea-2fd5-4b0d-8e02-9716de147499",
   "metadata": {},
   "outputs": [],
   "source": [
    "df = pd.read_excel('https://cdn.elifesciences.org/articles/55102/elife-55102-supp5-v1.xlsx')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 3,
   "id": "2f9750b9-a4f4-47cb-b054-c8bcce8e74cb",
   "metadata": {},
   "outputs": [],
   "source": [
    "df = df.set_index('ensemble_id')"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 4,
   "id": "7d8d1e14-7388-44ae-a000-e186ed824d00",
   "metadata": {},
   "outputs": [],
   "source": [
    "dfx = df[df.columns[4:]].T"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 5,
   "id": "69c18822-8cd2-4e53-9d3d-3b7fa0187493",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2022-08-01 16:25:58,556 - \u001b[32mINFO\u001b[0m - [bidd-aggmap]\u001b[0m - Calculating distance ...\u001b[0m\n"
     ]
    },
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "100%|###########################################################################################################################################| 5162/5162 [00:00<00:00, 5831.88it/s]\n"
     ]
    }
   ],
   "source": [
    "mp = AggMap(dfx, metric='correlation', by_scipy=True)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 6,
   "id": "66836da0-e3d0-4d57-a7b3-479300e84905",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2022-08-01 16:25:59,705 - \u001b[32mINFO\u001b[0m - [bidd-aggmap]\u001b[0m - applying hierarchical clustering to obtain group information ...\u001b[0m\n",
      "UMAP(a=None, angular_rp_forest=False, b=None, init='spectral',\n",
      "     learning_rate=1.0, local_connectivity=1.0, metric='precomputed',\n",
      "     metric_kwds=None, min_dist=0.1, n_components=2, n_epochs=None,\n",
      "     n_neighbors=500, negative_sample_rate=5, random_state=32,\n",
      "     repulsion_strength=1.0, set_op_mix_ratio=1.0, spread=2,\n",
      "     target_metric='categorical', target_metric_kwds=None,\n",
      "     target_n_neighbors=-1, target_weight=0.5, transform_queue_size=4.0,\n",
      "     transform_seed=42, verbose=2)\n",
      "Construct fuzzy simplicial set\n",
      "Mon Aug  1 16:26:00 2022 Finding Nearest Neighbors\n",
      "Mon Aug  1 16:26:01 2022 Finished Nearest Neighbor Search\n",
      "Mon Aug  1 16:26:03 2022 Construct embedding\n",
      "\tcompleted  0  /  500 epochs\n",
      "\tcompleted  50  /  500 epochs\n",
      "\tcompleted  100  /  500 epochs\n",
      "\tcompleted  150  /  500 epochs\n",
      "\tcompleted  200  /  500 epochs\n",
      "\tcompleted  250  /  500 epochs\n",
      "\tcompleted  300  /  500 epochs\n",
      "\tcompleted  350  /  500 epochs\n",
      "\tcompleted  400  /  500 epochs\n",
      "\tcompleted  450  /  500 epochs\n",
      "Mon Aug  1 16:26:11 2022 Finished embedding\n",
      "2022-08-01 16:26:11,784 - \u001b[32mINFO\u001b[0m - [bidd-aggmap]\u001b[0m - Applying grid assignment of feature points, this may take several minutes(1~30 min)\u001b[0m\n",
      "2022-08-01 16:26:56,509 - \u001b[32mINFO\u001b[0m - [bidd-aggmap]\u001b[0m - Finished\u001b[0m\n"
     ]
    }
   ],
   "source": [
    "mp = mp.fit(cluster_channels=6, n_neighbors = 500, spread=2) # "
   ]
  },
  {
   "cell_type": "markdown",
   "id": "58e0224b-31d1-4f17-92dc-3b1d18b6d8da",
   "metadata": {},
   "source": [
    "## Transform the data by AggMap"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 7,
   "id": "6bb75a0e-6d1e-4997-8f15-bb23d821952f",
   "metadata": {},
   "outputs": [
    {
     "name": "stderr",
     "output_type": "stream",
     "text": [
      "100%|###################################################################################################################################################| 9/9 [00:01<00:00,  5.74it/s]\n"
     ]
    }
   ],
   "source": [
    "X = mp.batch_transform(dfx.values, scale_method='standard')"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "cfcdcb4b-e61e-46ff-936b-1eca371db171",
   "metadata": {},
   "source": [
    "## Multi-channel Fmaps"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 8,
   "id": "8e0aff4c-ce9e-480c-a2d2-c11501b26ace",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "for i in range(9):\n",
    "    show.imshow_wrap(X[i], color_list=mp.colormaps.values(), x_max=1, vmin=-0.5, vmax=2)"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "461f6f41-7c00-4773-a8e1-bb601e23dda1",
   "metadata": {},
   "source": [
    "## Single-channel Fmaps"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 9,
   "id": "f065df10-2e2c-4fae-9eed-54089b11b9fe",
   "metadata": {
    "tags": []
   },
   "outputs": [
    {
     "data": {
      "image/png": "iVBORw0KGgoAAAANSUhEUgAAAO0AAADnCAYAAADy1tHpAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAABLeklEQVR4nO29aWBcR5k1/EitlrrVWlr7vliWZUne5C3eYsdLnBAncUxCIISEJcCEwIQJA8wwZAZmYHgZYIAMhIGEEBIIZMVxNmezHce7LVuWJVmLtVr7rpZaUrfUUuv7M6lzSp+k1/mAgdZX59fjVvWtunXvdZ967qnzBE1NTYmBgUHgIPgvPQADA4P3B/PQGhgEGMxDa2AQYDAPrYFBgME8tAYGAYaQuf7YW/wllVr+h6Lb1eeVvXFau0l/EL7zXJqKcz7RqOLDZ5JVvH1dh4rHJiwqPn4uUcUJ8WMqTkseVXFtY5TWtzN6XMVhYZMqzkt1qbixK1rFfkqW+ybwf9bkJM4hM2lYxU0dkSru6QvT+l6RP6DioZFQFbveTlBxZwbOIzN7RGbCQBnOKX7loIptdD4NlyNUvDhnSPv+5OPpKg7GVyTYj9iVgD8MXOVWsacb42b4rJgoxzCuUUKbdcb2IiIty3CdMsrDVWy5qUfF3rfjVTy4AvPhqET7qdU4v5g3Y1VcswLHFxGJScC1H3HjVp4cwXgzFuFauoqdKo6geb6+8LKK955bqOKhTlxvPo6ISHu7XcU2O+Y2LhbX2xqCC2ALRZuuPnw3PQlz0NSOa9yzNhU35DSYX1oDgwCDeWgNDAIMQXOJK9Z31Kg/Hqj7qfo8oqZDa7fztn9V8cciSlX8s+51Ko5zeFV8ugr0MSbap+INC3HcJhcoY4LDo+KSBnxXRGRtbpeK3yjOwJhWt6m4xQWKmxCBY1U2x+DzWIyvshZ0muGksYqIxDpBhdq7QHmC6b/C8GL03ZeI76etAD2rqwctYoSO4UDOPtDSwWyv1i66yabi5e9iHOV/h7np6gbVC/HhuJEu0EpfGOicIxe0baoU18IVp89B0RGHii99uF/Fk7T0sNeA+oZd5VJx3wCo+ShRWjvRcZ9zQsURkYhFRKQOx41Zjfl0j+Ccentmpv98jWLjQLPHvOg7/gyuS9canR6vWIylUc1l3C+RDswPL6e2rsK9PU5LwsrLuAejI/DdytwFhh4bGMwXmIfWwCDAMCc9Dn61T/1x9co+9fn37Pu1dksaWlT8zZV7VNwzRhk2C7Jnbh8oS2wYqF5JK7LHOQmgO2+cAu21O3SKNNYCaphdjfjyNchAMq1NfxL0uu4O0LmsFJ3+vAeLBfNTcUqn5lPRGEthnkvFHb2gbcHB+H64He1bWkArc7LRd4gFFPXySWTpc7cgA9vQotPpSJqTiHDEbWdAvYIXeGQmjI/j/+3welyvhC243rUXQf+WFGHORERc7pnpZ/8AqGHcWYx3aieO6zmF8fUn4BrZPBiTlZYI6TQHIiIdvRjvSCNibzjmMHoAVDmxFUuMnlTMk20Ufbhj8HkozVl/n541X/kulj2f/84fVHxgYpGK6/swbyMefD8mEvd8UgQy4qdrk1TcVpRu6LGBwXyBeWgNDAIMc4orklLxM85ChE+23qa1S0hGu7XSqeJDF0hokQEKGG1Hti7XAbrVdRD02NOfouId911ScbYDtFlE5LXIBSruG8LpFOaiHdPaLB9YR0g5aNvq1fUqfrMyS8XuC8ic5mwCtRMRyU/G2I9cTFWxawBUKIootIWosrUXbXwZNCYkFiWicGbKHk4v80VEhtw4lmsQdHUyDdnt1KOgau3rIK4IDQWVHCJqKERv0xZiHA3NoIUiIukpoHdM+yKfx7Vs34VM60ATlgWJRSQS6ce4h60Y04b9mP+0D+M4IiIZX8V1Or8Dfedua1bx5acz0UXStOzz/8ATgflMXulScS8tL2zpY/wVuee7L6n4G4/sVvEkiVKiNuN+WZ7Rq+LGXlyL1yux9Bsfu7LfUPNLa2AQYDAPrYFBgGFOesxgWmQlSiUiEjYCepZsAfVKTUL2razSqeLVy0Ar915Etm3prdCAHnuX6GY1qFZSka4/jSOBw+ROiAkyY0C9JteCfp6n7956E2i304KxMt0Mpxf9l+p0alh9CdQtlMQB37ztuIr3Ni9WMeusQ5ZjfEybI+zIotYVx87YxjtGHFpEFmZhzqvrMaZb1mM+n3flon0q5tBN1+4juy+q+Pcn8lRclAual7hIn/99p7JV/M11h1T8ic3QGEdeBCX+9MfLVPxqGZY2k5TFjiVNsSsR1PXUQbQXEcnegGu/6ZPVGNNbOSpeRlrpwibM2+UlmOcBos1+0tFPkojFSdpoEZHnli5VccFHmlRsJcF3Sz+WX1XteBPA+ndbK5Yh4Xn63M4G80trYBBgMA+tgUGAYU5xRWFdo/rjKGkyx8Z1ejZIGtAlZ4hGfAn0jLcdbSpAhrnTDeqUHAm965E/gM69vOuXKv51zHqt79wQZOUeemy7ioeJxvl7kZm8ZgeEIC4PqEl7D8ad9hhecp/fjSx0crIuUGBq3tSG8ytaBDp5rgo0MTkR3y9MxRKhfQjfLb/kRBvKgPcNQjji8erzzxroKaJ3fM14u2EIUe08J8YRa8GcPX4W9I/p8fik3neMnZZADxfiuJTxvz6iTsXv3PRBFZ/4IPr7wKO0Le0AKHSPG6KJ0ovI5k7H2peRkb38mW4Vd1/GdV1YiPm0PoW3E9WrMI71b2Acx27GEqYgD0sQEZEx0m9vIs38mcu4d+5cVKninz+yRcVZu9tVfO4M3mw44mlZsCnZiCsMDOYLzENrYBBguGJ6zPpTi0N/uZ+WBnrRfQHtUhtBS1sWgsKt3wF6wCipRoZt6wq0efNNZA03bmvTvrM4GvRuSRBoylfe3abib2w7qeLeKdDxX50ABYyKRDaRHTD6XaDQvH1PRCQyHN9xDeNc3ZR9ZvECf7+tE7QtLwu0raMfn7uGSHDQDJq48/ombRwj4+gvIRx01eXF2N89D+eQKXLpuHEjljBLwqHtfbUZy5ObMkFvm31Ore/nTyBTmxCHa9xGzg47rsJ1yYvC9SqYwjLp2ASu8aEnQLNvuKdcxQeqIEQQERk7g7E4NkJ4cVtBjYr3XcLbCeuzoK4jTlzj0Q2gwRnkJNHejWuxY1mr1nefB+eXHYnr9+Kvi1QctxVLNwe9FUiJRh/n6kCPJydwXTrXpBl6bGAwX2AeWgODAIN5aA0MAgxzKqJ8tPZJzKJ1K1mXiIhMTaGd104C9FisG9Ka8J2WXqwr22gNnLIMa4vdtioVv2SH6PvEBaijRESc67BOvOBeruLPb8Vrg2cvL1FxWTleGxxe/6SKP913q4p35OK10PNnsba7MRebCkREfnMWa68H12Dd/HhTkYqbWvEKYcSD6f7KujMqdgte5+Q7oeqqseJc7Wuh2lk4hlcaIiL/1oH1+9pY5AJ6QjDPqwqx7t2ZBJfMvY1QbG3KhtCe1VtDUxhfeLBuN8M2KosisK58y5aNcQxj/ffueczZxhV4HZYT5VJx2CYc57IbCq+gw/ornw334LVSnA1reV7HNl3GHFx1b5OKG49hjc+7k73juEY9vbhnS9v0vdS9h/Dvlu3IBfAmgdYOrIl5LzXnP6ZOOlXcl4pXPrJGZoX5pTUwCDCYh9bAIMAw5yuf5Y316o/ZCaCubxenae2sITiGj8yvbbQfN+gSaIqV9rRGbMIrgDsKQIkfLQbVDSmBUH/pMVAtEZGDH0G6/Z9uKlaxXUBHHj67UsV/swa02eXHsXp9oDIVJO6emMT/a0x3REQi6TXR+jy8vthsx2uUkSDMR70Px10agvZnxvAqIzgIc/nSKewXZbfClUv1faU3ZIK2d0+A7GWFuFQcMYXXMd1BaFM5DJpnJasbH513Ux/tKY7X9zO7vGT3E0WOiBM478MV2PzB1jijozgndnycWAb1Fhu2h03bqHJXITY4vN4Gk/GeAYxp7DgodVQ/+vPcCBrLrol8L+dm4Z6vqtcdOtmo/tJbUFexCTq/OuztRx/2UtzP7G7JzpO+6xLMKx8Dg/kC89AaGAQY5qTHmWUt6o+x0aR26Q6fsb2Ivh9xqhqUOMyLz9NrQZ1600AJOqgWzCQxoes2QAVV3qjXEYp3goK7ngcNS/4YMsC8EeHFd0E5772eMtQXoOz59vJ3VfyUq0jFOdEumQ3PvFigYn8szikjA31bydkxMx4CdKcNc1vb61RxaQWoXSQZddun2c08sArLgtd6sA92WZzuXvge9pWBSm5cDJpe3wMKGET/nbPBe/sArqmIvmyyUiGhg+dRX2jXmmaZCaHUfmgc98S+d7JVbKE3GHFp+oaNQdoMcODqx1T8Hft1KmaaX3IJ2WpnFDK1DhvmtvE07q9tNyHLfuQCKLCIyOpfot2RD+JaLj2NMbXmoo/0Oqr1RHWV0i8hq3/2WtwrnttiDD02MJgvMA+tgUGAYU56nHy2DdnjNGT06lt12xWmxItJ/N7YjnZ2G2UBX0TG0k97OxOb8WI76FsQqZ+5gPY5J3Sj7sYloMdRZEy97S7Yj5R9HxsDaleAYkUkgpauyYe4m7OoV0WBmp9ygfKJiLx9CnQ8LRXHTU8EzWHz8UtU86WvDZnr2z+Ac+33IPPJRue8r5QF5yIi3W7aCxxNZSwnQL22RzaoeJQy2k9WYW7+Me+EzITHu1epuLNPz97np7tUPH2v7XvIjAKFPtUEUUNNLe6PD21rUnFTPzLJrV2g40sX6Ebph06DsvppObV4EeZg2eexHFry9hsqfqUVAoyefsw5Z3x5OWMnCi0iMvAsrv2232L+T96K+9HrwKD612NMKx+Pozboo3MBMsmNX3IYemxgMF9gHloDgwDDnPQ4vxb7abmmDZd1FBGxUYnEsXJQnmh6me2KB71IWg+aE/4YaEb5RtC++AzQzehIZOEaK/SX3OuuRvaz24VxNVHl9JhYfH+YRB7jNO4FS0Hr2Zj9lnxQ1zfqkWEWEXko/lUVf+5X92CMBRg7CyHiyMy7fwSUjKvQM5wOjHt5LPTGzz6+Wmu3425kwaNCQPnfqAI15NKOyzOxFGDhBF9jH9mpVFx0qvjqddBGi4i09mCe7yjEOPonQRl5HLyUumkJsrP9Ply7PBvG97sqaJUHzuja4xvuQH9JoVi+/fzwMnyegDnX7uFOqjNFS7fCHJeKq96AiGj5jfp+2sl/gSa9+DbcO3HxmP+NX8W93bYY9//529AH70FmbXrfuhRDjw0M5gvMQ2tgEGCYkx4vrLqs/hhNVM1NZftE9Cxb4wWnirmE4FCCvqXrPbDJ9wQJCHLOgcZe/SyozDu/h2hCRKSjCzSz4A1Q53rKEt94G7ZwPf8ubE3CqZ5OKLk3ugfJfJ0cGPsqQCVFRD52O6xQ2Mnwv4+vUPHqAlC9WDuoGutxdyxDhprLI+5MA310TWIO9p6HOEJEZNlCLDciQ3Gd7CGYz+O1yLSyM2PcJ7E1r+8J2LS4hqGVHabrzXphEZHvrzio4nuPfUDFqwqh7W1ow7zdXlSr4lYPllLeSVDDd97GVszt10HHnWrXaxtd7IVYouc3+M7kTZjzvFSXioe8yJp3DWA+2ysxvmjaguognXSCU7caWp+MLZBv1GWjb6L/vMTg0p+xMTPb8izKwfmZSvAGBvMI5qE1MAgwzEmPlzQ0qD+yCfbwqG540dEJipqXi5fICVGgFCNj+M6583i5vLAS9KBh+cy1TLb/zqni3DM6PXvzRdDlq3KQ2SxuhOtD8yXQsJuvBeVs+haEBZED+P9rNApZ5Yx/q1BxTZeevdxBTg9No6C1ZU04vz1LsG2uaQRtmvsxJt72tXEFssS8Tc81CnpVfVR376DyMbJiJ2gba4/fqkUG98Gcoyr+QcsmHJdqE31gE7KlR0tBrbPTp1HUGox9+zq4WHS5kD1Oj8N3Bj2gqKXVqFW0YjGy7PWvImsbvArCjKwUve/G17DEGCvAmwe3G/faikI67jGIdJIvYxwF90OI0zaIbHikDUs6dlsREVmWDvpvC0H2+VA5xs5bN/VsNS5YUhyeEV5aGu2xgcE8gnloDQwCDHMau7EG1x+EX2s2qRIRccaABriHqbTgvdkqbv4v0K2sWtDppiLQGv4fZOtvyXGgB32fuF2vyP3RNcga7qvAuJpbQM8WLcHL73fKQKkiMjDu0s047gKqfF55FnrjVc/o9PinN1PWkSq+P7CpRMU/Ky5SsYXo7s1FoOnpseivYxA0jHW36/LI8C1NF5h8eAMysr4pLB/Sg10qHjkEQcaRHGSfs2iLYCQZal+8DOrKWVSmwyIiW6+CuKVnCBSw9Qio6Ma7QNlbgrAsyCKTe85W29eD0qbGow1vsRQRse3B0ohNCCPDcB6s3175fYx9/+MY04gP9yyXFA21gPYmROvZ4/0ncd+xoMLlAu3eVIjlQtsFzPmUB9eozYo5CwqZfanKML+0BgYBBvPQGhgEGObMHt/hLVZ/PFWHOijB0x51fuHO9CChGj/97pWggEy3rCGg4F4qzciOA0ODYPGRHbrn8rLj6GPNS6A5v9oL2sZODy4STlyzEm2OvAVztUkr5sTmwTjY01lEZPUGZHpdjyI7W7UGNM5OleSXbEI2t4G2N7KLQlYi5qkgBiIBdpvgORMR2VXQpOIxose2YMzza5UQlUQ5ZqaPmjaX3Ek4a9s9oOvOe8qwRFiwDhnVvkFcJ9Yb8xZNFj6wewcLTPzkqb04QTe0YwwTxW3qwZgifojr6hgks7p/xnKNvZFZ4DBISz2+b0REwpowD6yx70rDtfSG4zrlLUYW/HKZU8UsKOJ7u/8TUSZ7bGAwX2AeWgODAMOc2eNy8v9tq8dL57t3VWvtTrfAjSA1Edm+SmqTcxCUZ/RW0MTkOGh7B54AlbHfiexeYz00pn/3SV3/W3Y96NbZW0D7PnU7xvTOSWyviziADPC2bXBzuFwLJ4P2BaBqQ+RFW3BWf8FeEY9jxUWCCoWQ5jSxENnZG9Mwjkde3azisC5chhMbQUvPO5DBHR/HMbMz9Cxq7RDGwRn/4TFQuuxk0L5OorjeMVA7XvZ4KMPJbhjTXUuC0ihz6sbSqH8A8QT5XBctAcWtbMa47a/hXgv5CJYthSnQVXsndGFNiwtjWZaIpcSB4mwVb/o29NQ+ctbYEwe9914/zPA2ZOO+u9iD+26oGstDEZFROm+3E8cNdeIetPZj/mN+CtGFNQbXaCIUS5Ixm77smQ3ml9bAIMBgHloDgwDDnPS4swc0KjMPFOlQTfpMzUVEJJLKHLB3cU86Ph+lMgyLvgexQ3cRKIdvBPSK8cMjunNCyjFQpKtehmijN4tcKT6PzGnFj/BC3hu0B/GPQDmzK3GcbhJgOLt1eua+ALq8/B18x09Z2KTDoFUnu3Cu6T8ANa9tAuX/+qZzKn6sDKVRetqxPGnw64nFcaLjruOg1O5MzGdGCYk21oIqp6diOcNbyZzRyIJa2XwvThcZeLy4hTorcC0K1oOurkxFlv1wLe4dqxXXqH0B+tuR6FLxoTLQys+uw1ZIEd3Durkd+uivfeaIip+pg/NFdiIyuH+owpZEHvfjVEWQRUOjTl1QdNfXQZ3PP4trOfUExptzHvT46G24v+67D9c7lKycK66lB+bLMivML62BQYDBPLQGBgGGOelxNG0t4sLRTjJaExEZIirbQnpZC/2XkLgVdKnfBXo8bgf1aqGyIGnEFFYdxDFLP6OXhgi7A/rOw5GgolueQRa2YSXOI/vfQc/2/ROoXtEB0NuS69HHYAxoUVqNnj0u3g1NcyW5dCQ3ghYtP0Bb0a7HvJ29ABob34k2L6Tmq3jNQtDKN6pBjxdk6VvUosNxXN9VLsSDOK5vF+b/6jSMu6IR4/BeRB/hy7AcKmsFFWQfZxGRZV8DHbzj5QMY7z9uVXHp/WjfUQ5qmFGP+yDoavT3yjHoerMuYokWvk53P4lPwHlvId/k/zyKisxbVyIbHEZa4pZanOtNT2JMF36ArHLaT/EGomyzvm302f+D+cx6BtT8wX9+TsU///Id6Jvm86HXcX/d8wkSLenVXmaF+aU1MAgwmIfWwCDAMKf2eEd/hfrjiQtwS/jElhqt3eEGUE4HbdurOgFaxbrb9h5Q17CDeMHuigc/mMpDti2ctMMJMXr2svE4+hiNJxpcCipbeAw0zNmJ/6dKr6NCy5QlZo/ma3Yg21zfpQs7WMMbbQdVY3eGvI9BM3z4TpxTSgPauONwfsPRiCdIA33dx+Dx+8w7urFbVDTGcfc6XJu+LVtU3JsJWutKQh/Nd4PmdXZinjauxvU6cQ7b7G7ZMnMFPBGRcCvmrXUI9DPoQQhXzn4MYgn2/B0gDTMLWtg3uuN10FURke4sfH/9SoyXt+ZdeBZvDj51L8qeHOrIRpsTuLetibiOmx6G4KM1X88ex7fiTULr4plNC/n65Z/C3K5/DqvSs3twLUJo1fniaxajPTYwmC8wD62BQYDhiulxGJlXdQ3pRaUra6ErXprnUvHF42SktdQtM4G39U1Shnq4mbKG6aDE6a/o7hFswsZboaxjOBZvtRuKwXkkN4OixnRgHFP0X1lsO/7R91OYtImIxN0Pmup5BLT0dAUoe9JZ0MQwL45VtxQZxA88gfmrWwOO1JsC2hW3GdveuMqbiD6HVnI/GB9Df/mLkDHueBsZy1Aq9r3s42RC1w26Wl2N+KM7oZ8WETnyyyUzfp+N6NKike1+9RQyw5mnMDf9SaCfd38KRbKfPo9sundM/40JI3EGiz74PqqqxNyuXok5jKLlTNk+jMlKfUS6EKfW6VvzetNxH215Cuea2DArq1UYIl++/nRcr5oNuN4nHg419NjAYL7APLQGBgGGOcUV7LtrD8FPN+tNRUQKFoJ6cQW4yCG046K89Q3k2uAETenrAs1YugpZRqY75et1TfK2F0Dd1j8HCvPjJ5B1zK4GnUy7hO8X7wRtK/SA8ruJQk+E4hxaX4Z2WEQkjuKTZVgK/N22UhUfzcd2w8a9iFcd1oUa7yFkHOc6RMKOD3wcOtu9/9GjfYe9kpu6MLcsiGEBjGMj5sZzFMuN2l8gy8tZ7NCFoJ57X8U2NhGRwj0Qt1zuRd+bsyBSePR16H8TSEjiSkAfN98Nf+kfv46yKjZyC+EtfiIig7RdMS4WmeS+ftxHUaQfLimHkORvP4slTMdnsVRZcZDfNKC/Q5/URT3rXyQTuyUYY9l1OKdrfzGzft6Vgucqu4SWhLFzPo4K5pfWwCDAYB5aA4MAw5zZ47Vtl9Qf65pBfQb79J/9b9+El9a/q0OpDT8dekkaMnevnQDVC6XCztd/CxSz+Mcw3ho8jwxgygbQZhERy2+h+6zcALobTFnAZSdARfvSQJei+kBHLhVBW+qn/8qc1Gb5Ed3U7Ox1JADJR9zbi/m5f2eZil98aL2K7/gmxvTz1+HUcPvnkNn1RlAmmLpuKdRf9KfVYIzXvPmCir9yaJuKx4h2rzmEa+m7H+KR8iqnirkUS+QvLqj4/KPI5oqIDF+NpdHWpdD5vnIc1zi8DZRzJApjj6K3AlypcMqNbPi3Pohtdt89jvkT0bcPsuvGoNtKn2MOw09iKVV0gN5ODGJu8o7jQJc24d7MLNN/3za0PqLiHwxDxJL8CSwfRqPRNwsqDnwO405sxLmyAObdR60me2xgMF9gHloDgwDDnPR4VXOt+uPV6cgGPvbCCq0dWe1qQoirfgS6O/IwCjs7/hYUwvMzfN4zhCwvlxdJTQB1ZZcGEZGqYmQBbanoO5ay0lyxTMhsa4KECCETYCMFa6HH5eMntukv2C2UzexaA2rOmtqUR6GX7VwAan55Eca6pBhU2Upih8Y9WAo4T4HaJTbrWcb846DjL/8XqHYInV/ub3EerD3O+SJEIf0PIst7dgfOZxmJEqaD9cALykGDa+7Gd4bbKSPbhznsTsU8DTu+oeItC7+kYhb1cOFoEZEHvvKKih+5jO143X24jwYv461AxCBuVMtyiH3u/gC2F9atQ39F+9G+O0d/TpqXg8qu2Yd2pbvw/eVv4vPqLWj/yuewpCg6gmu/8Byu629PBht6bGAwX2AeWgODAMOcb3MzY0Eh+nygmNftatTavXYwGwcsh5409jcwKWtshuAyaDloYrgXdMnzIjKnqXcie2yhqskDf9BN5byL8dI7lShxI/k0W4nGRmWi/XgtqNN4GOiP57foI/xal4ptl/SSJM15oHeZJ5CRHb4B53dmF8zE7tgGbW4zba+rX4IxMX1csA9igA0vgAIPs6pDRMLBtrQsaiSVXxkjh5A938O1fGME2eDOJTgfRzzm0vFdZILrPqsLO9jZo3YV+pioRx8OWtKs+QjmoOEnMFFL2fJNFX85A/fBwW64Z0f26cZ6Xz60XcVJVJz87m/h2lduxfgyy8mfeBTLjeN3kMAnDe0P34HrGDpN93zXg7jeTH2ZUvfTrcqZ5LhuXGMrZfXr1vJbgZmFGSLml9bAIOBgHloDgwDDnPQ42wHetdgPv+FD/lytXVQyaFX6amQN9z8H6pXSiJ/7tPuxvav0RVCvhFugoe3+PbhF8scgAGBNrIhIRjqoZfMlUJYYGpNrAHSEK9Q125FlZFrKW+L8l0ChUz7bpPXd/zLGyFQ5ltpEd+G8Tz4M4UloNsaR0Im+WdjR9VFQ0YoBUMb0Sp0mNhWBnu16AO0O/Ay6YG82zunFcxBBFDyAjGxOCcbRQZng0muQvbdN6knNqQTyBk7COV2/BsubjeFwu/jvKhS3dl8HDfSnb4Gu+/QgxBwJpHk/uQNLDRERZzQ7RoAeD8eBig4kY26iejC5ex9A31+/la8Yrhf7EJf8pEUY/emg4PlHcNxRJ9o8989YXi5/F+Nbfhj3Xd1qzNl0X+3ZYH5pDQwCDOahNTAIMMxJj7mgb7kQfanVK4jtWY2yCPt/hVIWuTeBnrHPb2sFMsk3fQwV+OwW0J0jN6FvHseiXaB2IiKhVGDZPYLTSaPqfZEO0L7MBKoeN+ZU8dBC0OwpooDRTaAyp8shUBARmYhDti+hHbSqNxiUescHkWk//Aao6FQ0+SlvwtKDXR4OPw0RSsNy0O/ia3UjsRXH8II+5ywo1gSdRzwVPrb9GnrtzoVYbgSRpbHXAYrJDh/DgzqFC6Ls8TUfAA1+Zy+WUJXrce2DaLtnXiaWX8/tp+t4AYKNpJNY8kws1b2HYw84VRzXhmuffAnn3bAav0uhHnweQcKO/ziEZRlf+x2/wLbFO1ZjGSci8ty/YizBk6C+Qwk4P6bEsW0YR/tizDmXQ4nq07Xts8H80hoYBBjMQ2tgEGCYU3v8HXlF/bFl0qk+//0J3b3AR7pdNhbLTgfVy4hHJo0dFYproE9OiQdF3Z4NqvXrp1eqeMVOnR6z125tR7TMhAQndL6j5LrRMwDqayWazQWcg+i/tdFq3W2CM72OXGzNi6RyKhbaGlZPJmMsXihc6FJxfATm4PB5LEmSEvH5qvt0DW76RQzk8f8E5eSM/Ue+Cer1hwYIHIb3goqmkXlZfDPpaa/F/LUu0SmqnZwlHJWUab8BGui6yxAybC7CksntxfgiyKu4/DcQnli3Q38d/RQ5oonI2D04VudxKE7SyFPa2Y25YTO26pW4Xtc+7VTxSDSdzyC+y8IMEV0s0bQC9+DWJ9C3Fwlm6VyE43YvwDiq1oGmF5xGxv7gE2ZrnoHBvIF5aA0MAgxz0uPvyT71x44pULsWT6TWruo/4X2b+/fIBjf1gBaxORtXefPPYj5WkAqRho2qnXkm9IR3XBhoY60LWcq4cNA4lxc02DeJ/6fGJ0B5vOOImTbbwtB3Z7fuNzzuAp2MGCL6lIu+F2dDEJDhxBLBbgGl6hvDcQ+exjaxxETQ0pC3cW6NBbrJWNEx8LDRSP+M8aq3QI9dJDhIrqPtZ0TbBuPR5prfgrYd/qReloUzst2ZOCf7zWQ2V+JUcTTNDS83Ck+BWrNee+szuO/Ob9PP2+HGtbzqVZxf2XZQTi4JE9+M9hXbcA9yZcPUKpwPV7F7sUn3e477JrLJXGqGBRzODhzrjS9g7IVH0d/ZXfg8nBw7qh60G3psYDBfYB5aA4MAw9ziCsEvdFk/Mndur+7g0L+LKqHZQH+6baA8sQ7QKq4qd0synBMeLoUutbYLL7Y3ZiJjbKVteiI6JY6ygRZ1UNW23FiXipsGQdm7B0Cp0kl0wUiI8sz4uYjIVAL6i4vG+Y14MD99Q6BnbvqclwgsqCiksirl1U4VR10Nyhh/Uc9iFx7BfL74RWSP889h/pPr8P/zqldAw/Y/gHPY9RDGygW3T9+qFxFncNW9aCo2fs/CUhU/MonsP7uIZF0F/e/FDIzj2p8jE9zxncsq3nZfttZ3awHoeMn1GG8fuYgs/BvQ2qp/hhb+zE4sVXKLcQ+duQ2ceOlBMv47re+HzE/CfRhMgoz8I4hbl2LpGdWL+T+/E2PlNxC81JgL5pfWwCDAYB5aA4MAw5zZ4x9N7VV/jJ3Ay+iyEL08xolObFFj8UKSkzKF4zMzcS7GHELUN5vsGCaojN2of5q5GglmBygLaw8BdXL7QB+ZvneMgkIzZWdBBNtrpUXqlf+qe0CrbCTy8PpwrpE2iAba+kBXQ6niG5dS2bwABnoNQ04Vr43FEiF1St+i9t3zG1TMIpFbdqMMSQTZRdvoNLz0ImCCzBJ4e1vFdpzDhD79EjGAa+O34DuHPozrl1tBJVe2gxKn7AXlrCnCMmTlNRBmnCO9d0q5Xq0xswoDrl0Jeh2yibb8rcAcuCC5Fid0GRre/ALux6xy8ir+hL58yi3FvcbUlzPOvO0ugcz46GWItOVibrlaY+OXHCZ7bGAwX2AeWgODAMOc2WNPELiQfRI/9dvHLmntUpNB1zoEfGulD1TPagd9fGFK901+D3GhZLpGZsqpFhzfYtGzx11+9BdM5mxRFmToEkJndgToITrONJ23j/UNI9s54tO54bIkZE4bXBABZMeCGrYNYnwOqhxoISrJfZf3QIttmZYpfw+nN9+q/fsmKmuRUb5fxd/9NbLBeQeRNb/t3w+q+IlHUNJiz4+wXDh7M8aUegm3yanduvZ4rADLpo3LsMVwAxWVLvbhzUP6UaeKhz8BGrz532iJ9Q75QJNrRs4F3ews/yjGVbId47jnRlDil/4BtHnxKVw/VwrmLNyFY3YsBF3l7YnxHfq1Z+/o7AsYB+uQWdhxYg/Gl18Mas2UOKrPOFcYGMxLmIfWwCDAMGf2+GTn99Uf/UGgE81O/UWz1Q8al+GCZrgrEpQx1gN6MEHmvPtii1QcFQRKGzWFuHkKQoukYD2D2zeFjOLCKdDVnmDQUhaJBAvO99IYMpNXhcK4q8QH/W+EBTQxNxjHFxEp9SGLztrqPg8odX405mNk0koxbeEiDXSBA2Zu3ROgq1khLhUvGNPH8fF3blIxb42cHJmZbrFOeioHS5KwKtDSe/4e83fo06CYLKYQEQk9hmv84BdQpuOJHggqKuudKo45Q9UXY0Exlx3HnDHVDcmiLYmP6M4hJTtAnYejcKz0BtDSJvLF/vi/4r5lXfBs3sisT47q1ecyhPQmJTvRR1w7qHJCK9HmpZhDFmNMWHG92FDQc1uMyR4bGMwXmIfWwCDAMCc9Hnn38+qPZYuz1efWSd17uCIRmb8tddial94GKjUUDRo77AAVaosD9WUwBWf63WrT2w8HgQpZBONKmsDLcJfFPmP7zklQtXgLKFkoHad/Ct+tG2F/XJF0O6h6g9up4rQIfO4hSrwrqErFJVbMmXuSii4Tbc4Mc6n4un6Ux7i16g5tHA4q/+EdA41b9TAy0X2pOCd3HOLudPA8C5Xv4FIqmTdAiTD8BDKzIiK3PHhUxZdGcM1efBdb13Zthgdy449RCqQnHXSQxQrtuRjTmv2Y/4prQDFFRDa+gL81FWEOWODAbhWMvNOY57q16C/sfmidp76freKheD2Tbx/CXE0Sxe2hsiJhVAGRhSft+aDT8eRg4i9Bhr/rM5GGHhsYzBeYh9bAIMAwJz2WO5fjj7tR0kLCpglQmyijuAgv0sdtoCD7N6xScdQY6EFKP3SiY6FoX/T8cRW/9jfIjjrGdYoUOwwaHOzHcMtTiX6GgEaF+kFfonzIUB+xw6fXEYQ+3H7QtrAg3W84PgiUOmwKNMwVhP7cUzinoUkc6xo/zNXcFtDjzFGIhB9o36XizywuVfF3j6/XxhFEWmmulNc3MHPlNb8fzCtxmp53Jji7kQVtWaRv07vr7hIV//QN3CMrl+K6ekl3XlOHJcniM8hWM8Vkx431L2F8bYu5qpxIDzll7P4h2vWn41itheQ8koP2uWdxD+//DMQwN10PD++mfmTGM+/N0foepyqEDSupjAxdi3EbYmcPli3pVej7jU+i75AojM+zLdHQYwOD+QLz0BoYBBjmpsf/uAV/LIGOWNKi9HYraKueBf8PvPapG1R846OvqvjS7jUqznv5LL7bStWRiyBwkEpoVA987UNa19e+eETFQ4ux92o8FJSsPRFZ36Y4ZFQvRqD9kmFkSFmA0WJHtjpqQjc18wWD8lyyYlkQIqB3YQLK45gCteQsdowfNHvREAzRNpbD1SNh4hsqXpEP6ikiUt9KQhKivkODmAP2J/Z4cI0iqKpfygZQ854jyARHDuA8R69xaX13deM8sjJp22MthCET1Hd+HnTkoY/hvhmkjHY0aXDZzaE5X6fm2RfRd2se/rb7x6DdZ3fj8/zjONf+NIzpzI0Yd8w1WOr1uXB8rrwoIrL0MOacM8n1RVhahVL2OILKqdhGyN2CMuVcEdKIKwwM5hHMQ2tgEGCYmx5/czv+uPciPv+n7Xq77x5CzNS5gMo4+Ogl97ZFiF+pQLwF5SCEMsESg8zgeLSe7Qw9jWyfTJKu+KMb0cYHihrfB3oW0eHCd62gL8euRuW/RZfhGHE6n8YtIgu7sRWtOR500hcMWuq2ImPssiKrbJ0CPUv0YkyLurAUeH0BxvFYXZGKU2P17XFx4cjGv/wGspxbtmJJ0/kQxl6xDhn3nAWg5sPHsYwoPIlxV91HVeVK9aVRfyaWDMvyXSrekI556/CAKtd1OxGToVp8PsbkO4k2d/3NKRXv+8EmrW/W7bIIozOX3hCQDzGXOvn9g1hirDqsG+Wp9i1oHzKus9X9f0tmhvXouy8ZdDenkowDq0GvS/4W+vKhTlBwhu+WWEOPDQzmC8xDa2AQYJibHhdShdx6ylhen6u3O4zCyZJD+txlVHx6HVV6GyQv4aWUJR6iz8NJGMDU2j5NMNACmlK3E3QypxE0M3g/qH3bPVerOO25MzhO8rSMuDoQtoP1J+hV+R5Zt03Ft9WeU/GpbMxPfwio16Jh0OlJKsc3QVnoDdXIGH+p8CMqdnlBo7qH9OLDvS5Q2Y5OxNlZoL6jHlD2fhJdRFOFv742EqE48fky8mJu6dKp5DjplRNeR6b9c//ymorLJ1GZ74lD0B5HUWHtsBJkY3tSQTFn22YnIhLlwjmtOohxjf8feB0P/3QB2vdhrP1fhR46+kcQ4pRfjaVHxiX0HT1ta94YiSuaCpExniJxhTccSyDOHm+5A84vb72Me8Ubizn3XZdg6LGBwXyBeWgNDAIMcxq7SREZxbrpxfbwtDIR6UQtq5AZk6/vQMxZ4mYX4qNNiBfQtrt+UKGmb96s4uwXi7Wu/auxBSy3AtuqZIAyrEnIXl7MBk1P2QLK7yc3jZByUCepRebUGaJTpC1doDl5lSiC3ReJ/ngbo89imfHz/AZkeb+7GTrrtCkSmwio+fTi2cFEydYuh1PGyRJQ++waUN+JHNC5yFTMU95G9Hf6GCgtizfsYfpWt9FRqjz4IVz7w6OgpVy18NM7sHXzrYegR2ckt4C+27ky3tt6tUau0sfb8crewX2bEUpFzktxu7uehLCjdhUy4Hd8CPfpkR9gfINfJHGRiAwcxNyuOIK5PbYb2zKLjoKyt5FhXMkjBSoeWYS+LR5j7GZgMC9hHloDgwDD3NljNgC+rRCf/6Fyhsb/g1VEqRso4/ztnYh/dx4xU+1cMoxjr2Kit9KLjKiIiFxDgoxIveizQj++078W4oPYTpeKf7IbtPSLX31Ixa7bQJGcVRAMiIhIDGVSPTiPhpXo43QOxrf7FHTWbamgV2XpoOwVdtC2Zp9TxaPkgFHZoTtoRNhBvQZHQS2HX4W4pScZbTJXutDejfbdpCMmsxCJjta3xDEsZCQ32or5X3oSIpjRz4NaXr8AbxqePIN7ir9rH8a1T9wIul9Tq9Pj+ATMufUslmi2USReHWRi15ZDJT9qcN5cuW7q0xhr0K/wZqP1Zl3vbSX/bRacRPWjv6bFoL6ZeaDN/WedKmZDupAJjNtojw0M5hHMQ2tgEGCYkx6f7vie+uO61K/hD9fqu/jlAOl/4+jFfxzphEfJ9WGQtrjFUpslpFVuo8pwyUSPmUKLiNRQtvpmovCkJZYwSpInU+b1cehan3ga55fpBiXb/i5R+YFp1DwClG48FlSZTez2rVyr4msvITNZmoWsd5vdqWIHlV+ptkKcMuoHnasYwPZCEZEYOzLt/LI+Io/M6sifuDODKhXSC/2FmdD/dvfh3EgHIkGn9cz1khNoV/EliEei3sSbgLhPIbPO9H1ZKub5pdcw7uRmtGFv5MhB/TfGHQ2K6s+l7XXkrTw2i3vEiBPHTfsw3hb0/RpLlWDa5tiZqb8xccVh3oKonSWUBBW07ZFpMAtXQpsxf0nrIRSqXrTA0GMDg/kC89AaGAQY5s4eP/JB/PEbb+Pz7pEZGs+ApUR3KyBSkE2kQx6nt+KXXYjzqQTEZryo1yi3iMhTRF8znSp0/cO1Knaegona8BocK8JNAo5sUFH2Yl7cjIxx/DvwLRYR8S+HZjV4CJS/dD1enqd3UamSGGQZG5LQXxU5aAyQKdzCCdDH0mBkMoOD9GvGRnSpfggkftmyWsUXa0BrF+WABrd2YD4T4nEOLNhougzqb5n237zNjus3No4/BvUg280a3D3bmlTcNYy+T50H5Y9vRRa7PwFUMrZHd4/whqPv4VhkuNMvgXKGeslVohDXO5KyynFUEa8jGzTYNorvjoXpvsdhGZgrfyOu2ZAT4+AsOM9BXBKu13AzvjtFWXrvtUZ7bGAwb2AeWgODAMPc2uPP7UP80WWI+/UtUtJIL56bXIiZEjOON8/8OWM6D3sPCdNcBhYTjS6CMMH51ZdmbBNeQOKPTlDJBAco2fGFeSrOInqrbREUkdKlyKKvKq1Fd/XIRp5cga1oea0wj8vqxXFZh/x2dL6KO0JAp2MF2dGRKZ0mTtL/vUfHMSb3KNrxdG7KhoDg8Tr0F27H7RAXCwqXlwthgGtI3xrpdqOP8TEyjCOhQEY5KOBnt5xU8Rf6dqt4MfVRsKVJxacuQQPdbp1FPCMiiUSpu5dhrlKTca9uIMePjqewRMv7NJZPbe9gycPOGB+/jbTzIvLkPng8j1Fm2Eb64aAkUO2MC7hvu2memEJPJE7T9M8C80trYBBgMA+tgUGAYe7scVQY/ui+sp/uWZFCutEO9+zt3gNrj/m7Hr00h2Q5EU/qGT6FBzYjfv4C4giieouIZpNbxXAOMuA2jz4HfbEYlzsSFDD3PMQmw2nQCddlgZon9LtUfD4XlLY3DEISP6kahixUnsSvz0HJFChd3xjGsdwBsUPDOMbx2nkIO9hYbPPVoO+nKzAHXGrEGT1NZDCIOYzdjz6qV4GKJiYj08pCjbtWQsP+Wj3EFT4qumylanMpsfpbi04Xss/NZ9C3leinj7K+nA1O3IrlCVca7OnFPA+TbzRnm0X0rLR/CcY10IP5iKBsMC8dGBbrzPfsyDVJJntsYDBfYB5aA4MAw9zZY87U/rH0+Eoo8Wxg0UWcbmomraRRXkRb1sgDWaPEdsq8LiHjOQaVIYkopkz3qnSt2UQiBAu5RyG8aFsDupvWDj2pywE6FzuE+YgYA320+UB97VQh8EgSMtpcJFtEpMiPbHCXAxnnvY3IXFeVQTCypAhjci5E5r+8AW3WL4Om22alSnzDet9dRCfXfA3z3HoaIhbfJBmqdWP+z/Uj2++fZZU2RsZx56ritb+53bh9HWlkrtaEMdkWgqaz68YU6YWZHnOBbksIqOtk9HRVCY41MohzWrrEpeK+QSw9OgYxb1ExuMZeyjaHhs2yvJsG80trYBBgMA+tgUGA4cqdK/43kEh0nPXNTnqp7tIr12mqgRTawsfHSqbscxmor6Zv9pA7w25oh7Xjc1U/EZH8RJkR7NnMBnPxGN94ImhscwZ0t5VpoOBxI6DQv4pFSYylIXQOItIdhOPyFr6IYFDGWg+2NGbaXCreV41yIcnTyo2ocTgw50df1LdlTuVAvBBcB/rPWdtR0uNmXQRNbF+B/rauQeY61o7+Xi/JUPGqxdBii4icKse82WzozxlFLiKNuA9iaTudw44xJcSiv8paLHliY3AcptAiuqGdldw7mF739uJaMPXl7Xg8f2sLsSR5O2aZyR4bGMwXmIfWwCDA8Jenx+9XdDEXmMqy0IIzzovI+eI6qoJ3gjyT+Tgc342tbiIicpYyy8uosLYbdGs8H4KKkAlkHINHQF25EmB9NrS2bPjmsYBqeYJ17XG5oO9UC7LpJSPoOy4MNKxtFHPOHsosZOCs7SSJHeKcGLeIyAiVGwkmQtdxEpn8Idpel5ZK42jHdVm/EtRwkpzW3B6cK5upTceIF+Po6qbqhOQkMULZ5skRoru0vZCLbxfmulR8oZo8uUUknLcFtiNLzE4g3EbKsYRxZ2IO7USnY52g4/UFWYYeGxjMF5iH1sAgwDA3Pd65EH9k87ZAALtmsDCEaTNnpe9dh/g3JYjtbAqn++5qx1oI2u3fBiFE8GVkPP1ZaBPcBRpbum2FiofCQe3qnBB/xHuxdHB69SxvSySo6LlQZFtDg0DPOn0Yu3+KtL1UT8MahPNpp0LQYRa06RvVxRV8LEaUDRSw5+tLVFx2G8QcSQloM0hb/NYuBlVOdcBlo2VYn3+3lzybBzCumCgct6kN55GdhmM1tND5kf43Jx3z3NiO/tKTdN1zzwDuHaooI3HRWBrxssI7jvuIhSTjPnLQoO8Wp+UZemxgMF9gHloDgwDDXz57PBtmywT/sdhGJnHrQSXlt6WIWXTBxnOeaeUxeGtfJvkBRyCbKE6ik1xrYyOJFPpAvRquQkY7bAy03hUFOjdAVflERKpjkCXuCgGli/YjU9sejPF5p0DVGkaQFS2uw5IiOwU0MTKMtLITulw9LRLt9pcg271xKbYFnn0WpVHYqC1lAc6bs9Cbl0Bo4QwD1e326KZ+MWGgk+eaaQtlKK7Z0Ah5KBMFv38dDAF/VlyE80nE0iM8DNe7oVWn5skJ09xbZkA/aY9ZwBFtx3W9UIelTSjR9I5VaYYeGxjMF5iH1sAgwDD31rzZwJXxRERKOmZu98dgNkrMBnMiIk+Xv7/jvoOqbdrWw7uLENdj65rcSYKKh4/qxxokoQHT6Ciix90kGAml6S5pQZzuVGFOOUQevQugrQ0mal0SD+cJEZHl/ThWchj00e84QLU9k6CJo37QxAQb6ODGxdA0L7Ij632qD3ro8Qn9//lwC+huPJnBtfSCTmbegPvD/ybEI21hWDpERoKKXm9Hse6qILSv9Ti1vkMp850cA7rq9uL8JshgjlcndgFFLcrFubb1YelR24RzyErTM/Ys5hgjXfKqHGS+w8NA5y/UYBnCWmXWN0c5jLGbgcG8hHloDQwCDH+92eP/bWwhysleykyBk/SsrZRQkWnOHqdGzdxmAelXr6LSKBnkuFEDivr4/XeqeF1znYrj+8mtQ0QeW7NVxTe0YrlQkwBq6QoBVTs7haz5wBhEAsk2ZHOjLMh2sjCjf0z3Hm5zTZuT/wFng9s70TevelibO+YFxYyPw5w/UHBGxS2iV+w73YtSKcOkUU52kqmcHXFJKzLM6XEQWlS34rpw5pnpav207DFv/4ukot47MppUfKgtW8W85S86cmZ9MvdXmpVrsscGBvMF5qE1MAgw/H/LHl8p5nKc+HODfZM5szsbjtDWPN6C98VXECdOK0ly71WInziHmA3j9kB3K81UPqUdWV7WJDdfDx3yPU+/rOKKq3EcX6h+2bZ3wlSuI9qp4j4rqGvoFOagwIJyLQ7SCBf7qVRGMLLe3YLjsFZZRCQ7FudxsQ3nERdFFfieBk0fux19OyNBBz3embW54VRk+9wgbX8Uke9NvqriNzNRpuPlZmTN/WTg9q3EAyr+Qu2NKrZQhUCfBe1rmrDMCZ7288bfuTWzRsUvtUF3PjQCym4jIzjWN/e78aYhKtxkjw0M5iXMQ2tgEGAI/Owxu1L0/d/1oFeE61GiQmLp+Ofa9XbJlDlNo4wxa5SHKfvcRlnfW0HnpBD0UVqJQqcg41hC2/eWVzZpwzi1Ev7Go1aIKILp2jpHkRl+KnU9Pg/CnHE1vpYxp4pX2uCr/Fwr0X0Rae9GZnjpAohSjh2CIGPjNny/o5+WGL/HeUd9Fi4go0SVa0uQWX97y+Na32fjs1V81IPsf7SVsrAdEKhwSZKpWbQ7g6RVnqJthwUZ/Vo73haYGom5rezAeFNj8Hn3EO4j3qZnCyWfZXIOMVvzDAzmEcxDa2AQYPjTZ48f2Ig4D9REPv/S/7vtnwJ/KkrMeLNu5s+nlyRhQcWryCBqmWsuT7IG2U/XjdBQO394EG3yIOyYKEI2lwtVD0fqAofll5pUPGJHNrI4DzQ/Zwhb5e6SUyo+kgpqzYWr3VTA2SNUGc+hvwXYvBLjersRFDVnJWj+RSo3kvEMzq/0OiwXNhNNdNBWwHIyXdufQEsKEQkV/M3nx5x3eUHZYyKwPMmKRH+9VF3wYgsobXYSMrs5US4Vu3z6nNe7cO1DKJMcSRngc7U4182F0F+7x0kHTlR5fEL3Vp4N5pfWwCDAYB5aA4MAw9zZ4xg7/vi/LY74a0R6lP5vrth3LTlRXMT2LKGX9ZobBx+L6XQu6ZCzQCt7rwM1jL9AfssiIqlOFQ5TceuWFIgd2uIQu2ygjyF+UMxWO/prCEL7Fi+ooN2iu3d0j+JY7GoxMoY4JRpZ1NcPgkKzc0W8E/dXrwtUdHGGS8UPhOhbIx+3QNwSG4rvs0Edb0PMtoKyv9EBN43ESCwLmnpwXa7NblIxO3yIiDT0YE6yE3AfBAsemeZ+6JVDZyke7bST//Uk7oNDcUtM9tjAYL7APLQGBgGGubPHf42U+P71+r+Lkb2UU63yZ0WrviVO7lmF+PkKxBO05PAgE6qVQGFKzEWzd4C2SSaocnwlBAql11G/IlJ04qKKI8ieoaAbuuDYLGxFe3MFhBqL+rAVMN0FAYE3FbQygozIWIAhItI6iXMaGsXfCpJwrMNV2EJnp7IZrc2g1mwkx6VAjpVCx/3207q4YvgnyJSftSDTzsIQtw/HahuGGMZmxbKgKAJz0EtFswsnkXEv8epuLeE2LBM6BiEYsVMWnDPXrlGMNSwEfbs8+DzSZrTHBgbzEuahNTAIMPzptcd/Ki1wDmXrGgZmb8ewE3VjWsp4v9sFmcZGhup/4wp8LKIobpMZwePjbX6cYeascqZThW1f3qnitBIypxORiXTQ6BA35tzvAPVyxYAa1mRB5FEfS9sICckjoNanYpAZj5jSq+aV+EB9L3ZjPpgCxkdgTFVtuK7DtHVtQerMFRPZb5gr+YmI/Neat1V8YApb4iZJM8zOHPE2jKPVjeN6qTRHaMjMWV6rRd+S6KNMry0ElNhJWx2ru3CuwVfwKOUlulT8jG2tyR4bGMwXmIfWwCDAYB5aA4MAw1/vflpe201/1fKnQpYTMb924TKZbFUzOm2dzOO6GcJ7Tfm0D1Ywchdetchz9IqI17c8Jl5Ps20N1f4REZF1VJ+I3Bw9tOGgLRXrTecQvt8Tg3muT6Z9vYTL4Vgzl/rTtL8lhuBV0vkhvBbhOjusmkoIx7ryWA3a91Zjze1YgDaJcThOS9s0ux/CVzafVbFFsC69OIY1e78H61tHKF6vDI1h7R9Ka/ENkXiFeKiP5lhEdsXCUP3ISLaKR8axTo+1Y+zL7Hh9dMJFNaQI3P73YVeZNa2BwXyBeWgNDAIMf143xvcLtnmZbU/rnxL/htco8snnEVfAMVBWEGXsmPZagl8BvVIz8+eMml7ErI6a7fUPO3uzobl72quqYzRXNtCzsDHQ+dwXTqt4Yi2onn2UVDsRGIcvBLdGWpALQwrX93y6BdTSYUV/TS7Q7hXx2ECx3t+k4qDFWH1V/a5IxXm7cT6afUuyXk8nJwnLkz2XS1T8ctZK9BeKzRXhFlDip4eWq/ja2HoVnx4Gde3w4xpxfSARkRc6C1XMSqZIot0ubxi1z1fxhxdgyXSgF6/TvLyflspBTYf5pTUwCDCYh9bAIMDw15s9DgRwyU92Y1xISqmHTsz83S9vQvxoMeLraIlwgsphcnX6W3XbFblE+3djoEg7/bnrVbzu+WNoQ+bow7HI2lomkDmtz8a51SUiA9sbpte0GbaAx3UH4ViXSbRf3QOKy3Y1XS6q8UMqJqcDlJ2rpnt9+mrudAXm5JENb2CMZNLuFxw30YflzUuTyMaHBs9sZr/BCgP7C37dKL2P7GpslHFODkUfvT4sN3q9aJ8Xic0UZf14U8HWM6dSFpvssYHBfIF5aA0MAgx/vfR4TwFiFigEAjh77KY9krwX+EgTYs4YD1N7/i63WT5NBGEHrfr5s/+i4vt+TRnxCNBYvxO0tDUdFDPzaLWK67aDgvdFgRJ3RDm1rj0hyKpy7aAqAaV2T6DvELKCGfRhnlxeCB9YZPDmWWRzx3r1DG5EKmj0iBtz4B35qoq/dgvKhf7Hc79R8cduuV/FU0ShR4mCs31OTqRL67vfB7o7PonfPj/R/BGfPt73YLVgDobHZhZj7ItYZeixgcF8gXloDQwCDH+99JjB4oPukdnbzYb3W/bySpFHWWKu+XMltjdM//dDx6rt991Ketd+EhZETHvz3uxCvJqynLTH1/UZZKudhyEE8azHy317KYQIZbeCyltI5NGUQAb0IjIUivH2W3GdhoLx+TApBapG8P0IEmOUdYCmp8VCz8w2Le5RXbTC1d/5Vq1v/JaKf7djMz4PQ9+uKYwvNAj3xF2NMHL/dTaM9/smdN2zLRh7aC+5kB0PpX23kWEz28dMUvnNzHAIRHrGsWz5Xdg6Q48NDOYLzENrYBBgCAx6/KfElVjSsGiipGPmNiLvn3bzlj/WNzM+txZxHFGy7xxGzNsARUSaYQ0jC8imZ5A0yhFELa/OVmHvNqLpBG8Y2vc6IRyJ8OgWQqezIQaJ9KG/TjvMvJkqdwgy0b4pZGfP9SDbvDAG58OihJJLJDAREYcDFDWY6unU7r1XxXW3Yj5rUrF0OBRBFdsnMb7JKcoEU1bZO6kLO9jlkc3RWWgRF4olzdpJLD1eHoduOZQyyRY6jqHHBgbzCOahNTAIMPzl6fFfUkTxx2aV15KLwwU4RmjOFbNR8CsBj++x2xD/8IjebrZ6QYuJTqaSNpq3/G0ic3QPsp39C0FXYxtB5VsLddeFwQhkPNtikUXts4Pau0LQpiEYGfdJ+s247AGdLmuhTHIcKKYlWHdKtNK/2fS7pQt9X+5GJvkH192o4t4ptLEFgWa7/KDjXAl+OhzBEHakCTLA4X7M4SEflg5LbXCu4C1/HR4IUhJtONdfWDYbemxgMF9gHloDgwDDX54ez3e8X2EI65bzScjAVDdimjPGMWwh0wziv0XOHD94F3EuiUJumJaJfg/h6KN1DSj0uFXPoto9oIk9caC4zXEYb38YiS4sJMYIxuflHtDxvlFQVE3LO6b3PUr/jqYK7F0D+P6bwb9UMRvaPb9qnYqL/TDA41s+2oJs+NWeBq3vWA8EIM85V8/4fa8f42OqzVnpKItu/v4efhK81dBjA4P5AvPQGhgEGP66jN3+WMxWR4hN1Nic7RNFiJ8s/b8ff880IcJp0hjzcdnf+KkLMx9rG+mK36HaPLwdj4/JQomPw7hMRLSaP5p4xErZZ9YkJ9F8jFFl925QPv6udxNMyXKrdV1188KZvZIjxsj32IbMtT8IvxPOKVyjKCto4mgobksP+QhbgvXV2uIk1HiqJgM4WxjeBOR+53UVd923VcU31JTh80KMr20C8SCJLhrsurDjDxYYw1n9M9f/GfdjDn1+nPeHgnBPXLTiukwvIzobzC+tgUGAwTy0BgYBhvlFj2crrTndr/g9XAkl5mzuXOKPTchAMiXuKv57FSdtfxhtmBIzfb8TtEu8RF1/Bt9i2YvK7yIi0kG0dhH5I58jY7hOarM+C3ExtWHRxR6Mwx9M/7dbdd/jzBqU9QzLgrY6agTXIpjeUFyMAR3kTHJeCMzpYiMgMigZgA68ML5P67vLGy4zob2Llkl03kl10JHv3b1NxeNCpS7J5G2nB04exQ6aMxFxWkH/WXvsnsT94gyBsMZHmubzIRCohAr6Cwu6MoGP+aU1MAgwmIfWwCDAYMQVfw4wVWajNtYn8/a6T+FFvzy4H3EVlRFhR4vJadnKUaLRXFrlIm3/Y9p8C1Xge2aW7HYhCTuyaLvfyDQ3hgz8bXwRBBLDkaCoVdnQaLvCqfRIMGhpqx3H6Q2GHtc9BbpZ5dZdM9gUjSvPs3FaQxeywf+R+paKO2wQgjAsglu+04Lvhk/p5820tmYK42IRxTW+WhUfD4VAJTEYlD15ArrlrhAskx6Um424wsBgvsA8tAYGAYb5lT2+EnCx6o1EY7nI85Uih2gjexHXUZaTHSpYhxxNdPccXA00SvzftyD+9iHEP/ugPg4r/u/tTXKqOP4rL6INbT186y5okvO3wkWBs8TZT1IZkVZyxnDouueJhcgYhzbjvLu2gIJnddE5gUHLkB0UeiQYx42dQva4ecKp4gURLq3vETu+0+IGtWQzOFsoznvPa0dVfGwbBCrdDtwTTNO5OPVQEF0vEemeBIV3WpAp5/ImdTbMTYpgDq1TOG5PCO6JYJlZpDEd5pfWwCDAYB5aA4MAw18+e8xOC9OzojPBPk2fOZszRJYT8WXX+x0VwOIK9iEW0QtJM2ZzxCgg/Wohmbztw0v8Wb/LZnPTTeFSQNUknOYngeh4A3S6EkZ9FNFxmeIPkFBliHTPLNIQEVkHocD4Ongoh1AFPi2TnJOuYn8QqGRpApYqY8GUFfbj+paLXrmOt76Nkc6XNb9N/aC+xf9+l4pPfwNOIFzqhMucOMdI5BGliyvYdYO32nFsl5l9j7PHsIyI9EFzfTYCffyr7DLZYwOD+QLz0BoYBBj+8vT4/SJRL8+g0WPe1jbb1rfZwJngy5QtnYuyXwkFn81nmUUQb9YhXp9O7Uk04SaHA856i4j0kCMGizm2gq6O7MS2QscIHespKmgdS1retJnFB9I3zX2DilhrWIkxjtNWOx9plyvyQAdHwqh0iBOUPWMUtL4sguZGRPqn0He1G0uPEDJ8i7RiPh499aSKHccgfBjeAqFLSwpcPQouwK3iwHbyoxaRhigIKpI9uF9awnEfsd+zYwrXPmcEOusoL5YhQzacz00R9xl6bGAwX2AeWgODAMOflx6zXvYnuxF//Ln3d5wr9SdmKhpC7MI9cxZvVnBGm90wPrJMb1cBL1ttXDxepua/+TDiC9jS1nEnKtSlXGpHm4ePI+aqfLeTM4aIyEMQDcg/bqe+qRofjy8FGdX+m3EsVxSWHjk/fhNf/TCMy0L3TdMqryLK2kvV7jaj7MaIHdQ32j3z9skfbb5hxs///4pvyI2GHhsYzBeYh9bAIMAwNz02MDD4q4P5pTUwCDCYh9bAIMBgHloDgwCDeWgNDAIM5qE1MAgwmIfWwCDA8P8ATWXG+BWIW6IAAAAASUVORK5CYII=\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    },
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 288x288 with 1 Axes>"
      ]
     },
     "metadata": {},
     "output_type": "display_data"
    }
   ],
   "source": [
    "for i in range(9):\n",
    "    fig, ax = plt.subplots(figsize=(4,4))\n",
    "    sns.heatmap(X[i].sum(axis=-1).reshape(*mp.fmap_shape), ax = ax, cmap = 'rainbow', yticklabels=False, xticklabels=False, cbar=False, vmin=-2, vmax=2)"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 10,
   "id": "597f1693-257b-49c4-be75-529f7afd6b1d",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/png": "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\n",
      "text/plain": [
       "<Figure size 576x720 with 2 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "fig, ax = plt.subplots(figsize=(8,10))\n",
    "sns.heatmap(X[i].sum(axis=-1).reshape(*mp.fmap_shape), ax = ax, cmap = 'rainbow', \n",
    "            yticklabels=False, xticklabels=False, cbar=True, vmin=-2, vmax=2,  \n",
    "            cbar_kws = dict(use_gridspec=False,location=\"top\"))\n",
    "fig.savefig('legend.pdf')"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "01535501-09aa-49e7-86fa-567c92b1feac",
   "metadata": {},
   "source": [
    "## Visulization"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "e4a2ec04-0fb9-4fbb-a404-41760a0e4098",
   "metadata": {},
   "source": [
    "### 01.scatter plot"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 11,
   "id": "370096b9-ec98-46bb-9908-0ae84602a280",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2022-08-01 16:26:59,451 - \u001b[32mINFO\u001b[0m - [bidd-aggmap]\u001b[0m - generate file: ./feature points_5162_correlation_umap_scatter\u001b[0m\n",
      "2022-08-01 16:26:59,480 - \u001b[32mINFO\u001b[0m - [bidd-aggmap]\u001b[0m - save html file to ./feature points_5162_correlation_umap_scatter\u001b[0m\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<iframe style=\"border:0;outline:none;overflow:hidden\" srcdoc=\"&lt;!DOCTYPE html&gt; &lt;html lang=&quot;en&quot;&gt; &lt;head&gt; &lt;meta charset=&quot;utf-8&quot; /&gt; &lt;link href=&quot;https://www.highcharts.com/highslide/highslide.css&quot; rel=&quot;stylesheet&quot; /&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://code.highcharts.com/6/highcharts.js&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://code.highcharts.com/6/highcharts-more.js&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://code.highcharts.com/6/modules/heatmap.js&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://code.highcharts.com/6/modules/exporting.js&quot;&gt;&lt;/script&gt; &lt;/head&gt; &lt;body style=&quot;margin:0;padding:0&quot;&gt; &lt;div id=&quot;container&quot; style=&quot;width:1000px;height:850px;&quot;&gt;Loading....&lt;/div&gt; &lt;script&gt; $(function(){ Highcharts.setOptions({&quot;global&quot;: {}, &quot;lang&quot;: {}}); var option = {&quot;chart&quot;: {&quot;renderTo&quot;: &quot;container&quot;, &quot;width&quot;: 1000, &quot;height&quot;: 850, &quot;type&quot;: &quot;scatter&quot;, &quot;zoomType&quot;: &quot;xy&quot;}, &quot;colors&quot;: {}, &quot;credits&quot;: {&quot;enabled&quot;: false}, &quot;drilldown&quot;: {}, &quot;exporting&quot;: {}, &quot;labels&quot;: {}, &quot;legend&quot;: {&quot;align&quot;: &quot;right&quot;, &quot;layout&quot;: &quot;vertical&quot;, &quot;margin&quot;: 1, &quot;verticalAlign&quot;: &quot;top&quot;, &quot;y&quot;: 40, &quot;symbolHeight&quot;: 12, &quot;floating&quot;: false}, &quot;loading&quot;: {}, &quot;navigation&quot;: {}, &quot;pane&quot;: {}, &quot;plotOptions&quot;: {&quot;scatter&quot;: {&quot;marker&quot;: {&quot;radius&quot;: 2, &quot;states&quot;: {&quot;hover&quot;: {&quot;enabled&quot;: true, &quot;lineColor&quot;: &quot;rgb(100,100,100)&quot;}}}, &quot;states&quot;: {&quot;hover&quot;: {&quot;marker&quot;: {&quot;enabled&quot;: false}}}, &quot;tooltip&quot;: {&quot;headerFormat&quot;: &quot;&lt;b&gt;{series.name}&lt;/b&gt;&lt;br&gt;&quot;, &quot;pointFormat&quot;: &quot;{point.IDs}&quot;}}, &quot;series&quot;: {&quot;turboThreshold&quot;: 5000, &quot;dataLabels&quot;: {&quot;enabled&quot;: false, &quot;format&quot;: &quot;{point.IDs}&quot;}}}, &quot;series&quot;: {}, &quot;subtitle&quot;: {&quot;text&quot;: &quot;number of feature points: 5162, metric method: correlation&quot;}, &quot;title&quot;: {&quot;text&quot;: &quot;2D emmbedding of feature points based on umap method&quot;}, &quot;tooltip&quot;: {}, &quot;xAxis&quot;: {&quot;title&quot;: {&quot;enabled&quot;: true, &quot;text&quot;: &quot;X&quot;, &quot;style&quot;: {&quot;fontSize&quot;: 20}}, &quot;labels&quot;: {&quot;style&quot;: {&quot;fontSize&quot;: 20}}, &quot;gridLineWidth&quot;: 1, &quot;startOnTick&quot;: true, &quot;endOnTick&quot;: true, &quot;showLastLabel&quot;: true}, &quot;yAxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot;Y&quot;, &quot;style&quot;: {&quot;fontSize&quot;: 20}}, &quot;labels&quot;: {&quot;style&quot;: {&quot;fontSize&quot;: 20}}, &quot;gridLineWidth&quot;: 1}}; var chart = new Highcharts.Chart(option); var data = [{&quot;data&quot;: [{&quot;x&quot;: -1.2721822261810303, &quot;y&quot;: 2.2471680641174316, &quot;IDs&quot;: &quot;ENSG00000003436&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.0037834644317627, &quot;y&quot;: 1.2108877897262573, &quot;IDs&quot;: &quot;ENSG00000004139&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.4020277261734009, &quot;y&quot;: -0.23844371736049652, &quot;IDs&quot;: &quot;ENSG00000004799&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.1697189807891846, &quot;y&quot;: -0.22158434987068176, &quot;IDs&quot;: &quot;ENSG00000004948&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.90280020236969, &quot;y&quot;: 2.1259260177612305, &quot;IDs&quot;: &quot;ENSG00000005073&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8769636154174805, &quot;y&quot;: -2.959251642227173, &quot;IDs&quot;: &quot;ENSG00000005483&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.3606715202331543, &quot;y&quot;: -2.862067222595215, &quot;IDs&quot;: &quot;ENSG00000006468&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.91898775100708, &quot;y&quot;: 2.214172840118408, &quot;IDs&quot;: &quot;ENSG00000006652&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.034736156463623, &quot;y&quot;: 1.0224823951721191, &quot;IDs&quot;: &quot;ENSG00000008083&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.628875732421875, &quot;y&quot;: 1.1879712343215942, &quot;IDs&quot;: &quot;ENSG00000008294&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.466099262237549, &quot;y&quot;: 1.7714405059814453, &quot;IDs&quot;: &quot;ENSG00000009724&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.074838876724243, &quot;y&quot;: -0.9402048587799072, &quot;IDs&quot;: &quot;ENSG00000010539&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.299194812774658, &quot;y&quot;: 2.157169818878174, &quot;IDs&quot;: &quot;ENSG00000010671&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.7893867492675781, &quot;y&quot;: 0.21761886775493622, &quot;IDs&quot;: &quot;ENSG00000018408&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.48511004447937, &quot;y&quot;: 1.111620306968689, &quot;IDs&quot;: &quot;ENSG00000019991&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.199528217315674, &quot;y&quot;: 2.3632636070251465, &quot;IDs&quot;: &quot;ENSG00000022355&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.1417337656021118, &quot;y&quot;: 1.1624773740768433, &quot;IDs&quot;: &quot;ENSG00000023445&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0717978477478027, &quot;y&quot;: 1.3508394956588745, &quot;IDs&quot;: &quot;ENSG00000034152&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.6042375564575195, &quot;y&quot;: -0.8635995984077454, &quot;IDs&quot;: &quot;ENSG00000035115&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.988811731338501, &quot;y&quot;: 2.3983728885650635, &quot;IDs&quot;: &quot;ENSG00000037965&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.72662091255188, &quot;y&quot;: -1.1234166622161865, &quot;IDs&quot;: &quot;ENSG00000041982&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.2912163734436035, &quot;y&quot;: 1.864976167678833, &quot;IDs&quot;: &quot;ENSG00000043039&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8694634437561035, &quot;y&quot;: 2.626664638519287, &quot;IDs&quot;: &quot;ENSG00000048052&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.628778338432312, &quot;y&quot;: 1.8357142210006714, &quot;IDs&quot;: &quot;ENSG00000054598&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8846044540405273, &quot;y&quot;: -0.01569456234574318, &quot;IDs&quot;: &quot;ENSG00000057468&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.982389450073242, &quot;y&quot;: -0.2242051362991333, &quot;IDs&quot;: &quot;ENSG00000057657&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0459017753601074, &quot;y&quot;: -1.486549973487854, &quot;IDs&quot;: &quot;ENSG00000057704&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5659492015838623, &quot;y&quot;: -4.163191795349121, &quot;IDs&quot;: &quot;ENSG00000058673&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.006411552429199, &quot;y&quot;: 0.23604591190814972, &quot;IDs&quot;: &quot;ENSG00000059769&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8159868717193604, &quot;y&quot;: 0.3630956709384918, &quot;IDs&quot;: &quot;ENSG00000059804&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.318324089050293, &quot;y&quot;: 1.0642848014831543, &quot;IDs&quot;: &quot;ENSG00000066422&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.34262752532959, &quot;y&quot;: -2.2353110313415527, &quot;IDs&quot;: &quot;ENSG00000067082&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.680389642715454, &quot;y&quot;: 2.9869070053100586, &quot;IDs&quot;: &quot;ENSG00000070444&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.677804946899414, &quot;y&quot;: 1.5147227048873901, &quot;IDs&quot;: &quot;ENSG00000071575&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.936588764190674, &quot;y&quot;: -0.8640813231468201, &quot;IDs&quot;: &quot;ENSG00000073614&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8594422340393066, &quot;y&quot;: -0.7920534014701843, &quot;IDs&quot;: &quot;ENSG00000073737&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.6999258995056152, &quot;y&quot;: 1.9443962574005127, &quot;IDs&quot;: &quot;ENSG00000075426&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.320503234863281, &quot;y&quot;: 0.9039213061332703, &quot;IDs&quot;: &quot;ENSG00000075429&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.986325263977051, &quot;y&quot;: 3.7741293907165527, &quot;IDs&quot;: &quot;ENSG00000076248&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.6712595224380493, &quot;y&quot;: 1.030422568321228, &quot;IDs&quot;: &quot;ENSG00000077044&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.3903062343597412, &quot;y&quot;: 0.011714756488800049, &quot;IDs&quot;: &quot;ENSG00000077585&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.941575527191162, &quot;y&quot;: -0.5790495872497559, &quot;IDs&quot;: &quot;ENSG00000078142&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.5754218697547913, &quot;y&quot;: 1.4695980548858643, &quot;IDs&quot;: &quot;ENSG00000081189&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.757425546646118, &quot;y&quot;: 1.6182143688201904, &quot;IDs&quot;: &quot;ENSG00000083093&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.031951904296875, &quot;y&quot;: -0.013546803034842014, &quot;IDs&quot;: &quot;ENSG00000083817&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.716472864151001, &quot;y&quot;: 1.802244782447815, &quot;IDs&quot;: &quot;ENSG00000086619&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.300217628479004, &quot;y&quot;: -1.2997266054153442, &quot;IDs&quot;: &quot;ENSG00000086696&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.1014533042907715, &quot;y&quot;: 1.2956197261810303, &quot;IDs&quot;: &quot;ENSG00000087074&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.4866572916507721, &quot;y&quot;: -0.6886555552482605, &quot;IDs&quot;: &quot;ENSG00000087494&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.646027565002441, &quot;y&quot;: 1.0404423475265503, &quot;IDs&quot;: &quot;ENSG00000087510&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.173948287963867, &quot;y&quot;: -1.2984956502914429, &quot;IDs&quot;: &quot;ENSG00000087589&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.273716926574707, &quot;y&quot;: 0.1291600614786148, &quot;IDs&quot;: &quot;ENSG00000088826&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.8361423015594482, &quot;y&quot;: 1.349277138710022, &quot;IDs&quot;: &quot;ENSG00000089116&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.8626402616500854, &quot;y&quot;: -0.3514907658100128, &quot;IDs&quot;: &quot;ENSG00000090447&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.918201208114624, &quot;y&quot;: 2.927708625793457, &quot;IDs&quot;: &quot;ENSG00000090776&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.494253396987915, &quot;y&quot;: -1.6690186262130737, &quot;IDs&quot;: &quot;ENSG00000091409&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.4097480773925781, &quot;y&quot;: 1.6108094453811646, &quot;IDs&quot;: &quot;ENSG00000095739&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.206185817718506, &quot;y&quot;: 0.3851671814918518, &quot;IDs&quot;: &quot;ENSG00000095951&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8006980419158936, &quot;y&quot;: -1.6713825464248657, &quot;IDs&quot;: &quot;ENSG00000099326&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.4152114391326904, &quot;y&quot;: 3.057833671569824, &quot;IDs&quot;: &quot;ENSG00000099954&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.779544711112976, &quot;y&quot;: -0.5767796039581299, &quot;IDs&quot;: &quot;ENSG00000100036&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.073094844818115, &quot;y&quot;: -0.5225149989128113, &quot;IDs&quot;: &quot;ENSG00000100068&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.3743624687194824, &quot;y&quot;: 2.216808795928955, &quot;IDs&quot;: &quot;ENSG00000100292&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.183642387390137, &quot;y&quot;: 3.832382917404175, &quot;IDs&quot;: &quot;ENSG00000100297&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.561213254928589, &quot;y&quot;: -1.182204246520996, &quot;IDs&quot;: &quot;ENSG00000100335&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.0935051441192627, &quot;y&quot;: 0.565963625907898, &quot;IDs&quot;: &quot;ENSG00000100505&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8261654376983643, &quot;y&quot;: 3.221893787384033, &quot;IDs&quot;: &quot;ENSG00000100739&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.291357517242432, &quot;y&quot;: 2.5426113605499268, &quot;IDs&quot;: &quot;ENSG00000100906&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0698275566101074, &quot;y&quot;: -1.304210901260376, &quot;IDs&quot;: &quot;ENSG00000100985&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.953817844390869, &quot;y&quot;: 0.749224066734314, &quot;IDs&quot;: &quot;ENSG00000101096&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.94658362865448, &quot;y&quot;: -1.8234225511550903, &quot;IDs&quot;: &quot;ENSG00000101109&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.32647180557251, &quot;y&quot;: 0.8229382634162903, &quot;IDs&quot;: &quot;ENSG00000101384&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.9679083824157715, &quot;y&quot;: 1.5508506298065186, &quot;IDs&quot;: &quot;ENSG00000101438&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.952604293823242, &quot;y&quot;: 1.344558596611023, &quot;IDs&quot;: &quot;ENSG00000101654&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.9016687870025635, &quot;y&quot;: 1.9409302473068237, &quot;IDs&quot;: &quot;ENSG00000102554&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.098146438598633, &quot;y&quot;: 2.434128522872925, &quot;IDs&quot;: &quot;ENSG00000102804&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.953793525695801, &quot;y&quot;: 1.2730094194412231, &quot;IDs&quot;: &quot;ENSG00000103056&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.7728270292282104, &quot;y&quot;: -0.35390329360961914, &quot;IDs&quot;: &quot;ENSG00000103855&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.210777997970581, &quot;y&quot;: 1.1563035249710083, &quot;IDs&quot;: &quot;ENSG00000104419&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.585775852203369, &quot;y&quot;: -0.427214652299881, &quot;IDs&quot;: &quot;ENSG00000104691&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.17025922238826752, &quot;y&quot;: -0.535358726978302, &quot;IDs&quot;: &quot;ENSG00000104951&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.345421314239502, &quot;y&quot;: -0.4238564372062683, &quot;IDs&quot;: &quot;ENSG00000105204&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.174742221832275, &quot;y&quot;: 0.586834192276001, &quot;IDs&quot;: &quot;ENSG00000105708&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.236755847930908, &quot;y&quot;: -0.5647826790809631, &quot;IDs&quot;: &quot;ENSG00000105732&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.708512783050537, &quot;y&quot;: 1.4593346118927002, &quot;IDs&quot;: &quot;ENSG00000105856&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8206794261932373, &quot;y&quot;: 0.6454729437828064, &quot;IDs&quot;: &quot;ENSG00000106080&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.79062557220459, &quot;y&quot;: 1.7028679847717285, &quot;IDs&quot;: &quot;ENSG00000107159&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.41724157333374, &quot;y&quot;: 1.5812015533447266, &quot;IDs&quot;: &quot;ENSG00000107338&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.211361885070801, &quot;y&quot;: 2.2171618938446045, &quot;IDs&quot;: &quot;ENSG00000107485&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.276787757873535, &quot;y&quot;: 3.1305274963378906, &quot;IDs&quot;: &quot;ENSG00000107731&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.518667221069336, &quot;y&quot;: 2.407176971435547, &quot;IDs&quot;: &quot;ENSG00000107859&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.18993178009986877, &quot;y&quot;: 0.4751240015029907, &quot;IDs&quot;: &quot;ENSG00000108001&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.157827854156494, &quot;y&quot;: 2.049704074859619, &quot;IDs&quot;: &quot;ENSG00000108175&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.631312370300293, &quot;y&quot;: 1.3433719873428345, &quot;IDs&quot;: &quot;ENSG00000108306&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.6142377853393555, &quot;y&quot;: -0.055462732911109924, &quot;IDs&quot;: &quot;ENSG00000109133&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.7053249478340149, &quot;y&quot;: 0.21977175772190094, &quot;IDs&quot;: &quot;ENSG00000109321&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.062158107757568, &quot;y&quot;: 0.6962023973464966, &quot;IDs&quot;: &quot;ENSG00000109670&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.41171932220459, &quot;y&quot;: 0.989700198173523, &quot;IDs&quot;: &quot;ENSG00000109851&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.053203582763672, &quot;y&quot;: 0.7337793707847595, &quot;IDs&quot;: &quot;ENSG00000110060&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.4031267166137695, &quot;y&quot;: -1.1953084468841553, &quot;IDs&quot;: &quot;ENSG00000110841&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.646868705749512, &quot;y&quot;: 1.2208229303359985, &quot;IDs&quot;: &quot;ENSG00000110848&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.838963985443115, &quot;y&quot;: -0.19563691318035126, &quot;IDs&quot;: &quot;ENSG00000110852&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.385423183441162, &quot;y&quot;: 2.2970895767211914, &quot;IDs&quot;: &quot;ENSG00000111262&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.7025783061981201, &quot;y&quot;: 2.1195762157440186, &quot;IDs&quot;: &quot;ENSG00000111837&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9159622192382812, &quot;y&quot;: 3.7509634494781494, &quot;IDs&quot;: &quot;ENSG00000111877&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.444563865661621, &quot;y&quot;: 1.9316715002059937, &quot;IDs&quot;: &quot;ENSG00000112175&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.535517930984497, &quot;y&quot;: -0.07040657103061676, &quot;IDs&quot;: &quot;ENSG00000112245&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5372416973114014, &quot;y&quot;: -0.9031012654304504, &quot;IDs&quot;: &quot;ENSG00000112297&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5674545764923096, &quot;y&quot;: -0.733871579170227, &quot;IDs&quot;: &quot;ENSG00000112299&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.745225667953491, &quot;y&quot;: 0.034703973680734634, &quot;IDs&quot;: &quot;ENSG00000112365&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.1268227100372314, &quot;y&quot;: 3.1380443572998047, &quot;IDs&quot;: &quot;ENSG00000112773&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.510851860046387, &quot;y&quot;: 1.948481798171997, &quot;IDs&quot;: &quot;ENSG00000113163&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8429183959960938, &quot;y&quot;: 1.8295302391052246, &quot;IDs&quot;: &quot;ENSG00000113369&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.902060031890869, &quot;y&quot;: 1.1301226615905762, &quot;IDs&quot;: &quot;ENSG00000113580&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6319069862365723, &quot;y&quot;: -1.4562753438949585, &quot;IDs&quot;: &quot;ENSG00000113742&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.329962253570557, &quot;y&quot;: 3.4688591957092285, &quot;IDs&quot;: &quot;ENSG00000113916&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.9839231967926025, &quot;y&quot;: 1.6300945281982422, &quot;IDs&quot;: &quot;ENSG00000114423&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.511333703994751, &quot;y&quot;: -0.6330650448799133, &quot;IDs&quot;: &quot;ENSG00000114739&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.840737819671631, &quot;y&quot;: 3.0436792373657227, &quot;IDs&quot;: &quot;ENSG00000114796&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.2478680610656738, &quot;y&quot;: 1.354190707206726, &quot;IDs&quot;: &quot;ENSG00000115008&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.8890858292579651, &quot;y&quot;: -0.13919006288051605, &quot;IDs&quot;: &quot;ENSG00000115461&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.4173377752304077, &quot;y&quot;: 1.0429307222366333, &quot;IDs&quot;: &quot;ENSG00000116285&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.355563640594482, &quot;y&quot;: 1.152112603187561, &quot;IDs&quot;: &quot;ENSG00000116604&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8663086891174316, &quot;y&quot;: 2.768975019454956, &quot;IDs&quot;: &quot;ENSG00000116717&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9938132762908936, &quot;y&quot;: 1.126003623008728, &quot;IDs&quot;: &quot;ENSG00000116819&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.6312240362167358, &quot;y&quot;: 1.057199478149414, &quot;IDs&quot;: &quot;ENSG00000117318&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.331430912017822, &quot;y&quot;: 0.3568493723869324, &quot;IDs&quot;: &quot;ENSG00000117586&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8148810863494873, &quot;y&quot;: 0.47097933292388916, &quot;IDs&quot;: &quot;ENSG00000117597&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8615214824676514, &quot;y&quot;: 0.3255246579647064, &quot;IDs&quot;: &quot;ENSG00000117877&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.747214317321777, &quot;y&quot;: 1.7132927179336548, &quot;IDs&quot;: &quot;ENSG00000118503&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8654489517211914, &quot;y&quot;: -2.1103477478027344, &quot;IDs&quot;: &quot;ENSG00000118514&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.394934892654419, &quot;y&quot;: -1.0219789743423462, &quot;IDs&quot;: &quot;ENSG00000118515&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.5337629318237305, &quot;y&quot;: 0.24390824139118195, &quot;IDs&quot;: &quot;ENSG00000118985&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.99571418762207, &quot;y&quot;: 1.1833082437515259, &quot;IDs&quot;: &quot;ENSG00000118997&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.143343210220337, &quot;y&quot;: 3.2908377647399902, &quot;IDs&quot;: &quot;ENSG00000119042&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.4101049900054932, &quot;y&quot;: 1.9179401397705078, &quot;IDs&quot;: &quot;ENSG00000119138&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.282370090484619, &quot;y&quot;: 1.6154061555862427, &quot;IDs&quot;: &quot;ENSG00000119508&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.038975238800049, &quot;y&quot;: 2.1397953033447266, &quot;IDs&quot;: &quot;ENSG00000119669&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.288179874420166, &quot;y&quot;: -2.3907206058502197, &quot;IDs&quot;: &quot;ENSG00000119737&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.135167598724365, &quot;y&quot;: 2.2245595455169678, &quot;IDs&quot;: &quot;ENSG00000119866&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.1089459657669067, &quot;y&quot;: 0.9131749868392944, &quot;IDs&quot;: &quot;ENSG00000119938&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.115002632141113, &quot;y&quot;: 1.0973117351531982, &quot;IDs&quot;: &quot;ENSG00000119953&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.167886734008789, &quot;y&quot;: 2.5993330478668213, &quot;IDs&quot;: &quot;ENSG00000119986&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.299926280975342, &quot;y&quot;: 0.37949368357658386, &quot;IDs&quot;: &quot;ENSG00000120158&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.231776237487793, &quot;y&quot;: 3.5203282833099365, &quot;IDs&quot;: &quot;ENSG00000120690&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.0442118644714355, &quot;y&quot;: 1.5200904607772827, &quot;IDs&quot;: &quot;ENSG00000120833&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.877034068107605, &quot;y&quot;: -1.1733191013336182, &quot;IDs&quot;: &quot;ENSG00000120875&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.1051948070526123, &quot;y&quot;: -1.7662582397460938, &quot;IDs&quot;: &quot;ENSG00000120889&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.1614317893981934, &quot;y&quot;: -2.629082441329956, &quot;IDs&quot;: &quot;ENSG00000121406&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.019498109817505, &quot;y&quot;: -0.5950729846954346, &quot;IDs&quot;: &quot;ENSG00000122641&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.4955129623413086, &quot;y&quot;: 2.090531587600708, &quot;IDs&quot;: &quot;ENSG00000122877&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.083003044128418, &quot;y&quot;: 3.4843878746032715, &quot;IDs&quot;: &quot;ENSG00000123095&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.5877166986465454, &quot;y&quot;: 1.220314621925354, &quot;IDs&quot;: &quot;ENSG00000123358&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.893642008304596, &quot;y&quot;: 0.26028069853782654, &quot;IDs&quot;: &quot;ENSG00000124145&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.2600811719894409, &quot;y&quot;: -0.03179161623120308, &quot;IDs&quot;: &quot;ENSG00000124171&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.033682346343994, &quot;y&quot;: 0.6543678641319275, &quot;IDs&quot;: &quot;ENSG00000124217&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.089477062225342, &quot;y&quot;: -0.4051443636417389, &quot;IDs&quot;: &quot;ENSG00000124635&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.062685251235962, &quot;y&quot;: 2.5480237007141113, &quot;IDs&quot;: &quot;ENSG00000124659&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.0671961307525635, &quot;y&quot;: -2.1881444454193115, &quot;IDs&quot;: &quot;ENSG00000124713&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.8171491622924805, &quot;y&quot;: 1.7303144931793213, &quot;IDs&quot;: &quot;ENSG00000124743&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8738625049591064, &quot;y&quot;: -2.2022812366485596, &quot;IDs&quot;: &quot;ENSG00000124789&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.0599448680877686, &quot;y&quot;: 0.5333806276321411, &quot;IDs&quot;: &quot;ENSG00000124875&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.4872986972332001, &quot;y&quot;: 0.15687084197998047, &quot;IDs&quot;: &quot;ENSG00000124882&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.682697296142578, &quot;y&quot;: -0.6560052633285522, &quot;IDs&quot;: &quot;ENSG00000125398&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8581087589263916, &quot;y&quot;: 1.3437871932983398, &quot;IDs&quot;: &quot;ENSG00000125538&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.239987373352051, &quot;y&quot;: 1.9508109092712402, &quot;IDs&quot;: &quot;ENSG00000125740&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.7273424863815308, &quot;y&quot;: 0.18332794308662415, &quot;IDs&quot;: &quot;ENSG00000125772&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.332885265350342, &quot;y&quot;: 2.551522731781006, &quot;IDs&quot;: &quot;ENSG00000125798&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.6615982055664062, &quot;y&quot;: 1.0621579885482788, &quot;IDs&quot;: &quot;ENSG00000125845&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.73117733001709, &quot;y&quot;: 0.0034214702900499105, &quot;IDs&quot;: &quot;ENSG00000125952&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.569804310798645, &quot;y&quot;: 1.128012776374817, &quot;IDs&quot;: &quot;ENSG00000125968&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.149886608123779, &quot;y&quot;: 1.2335994243621826, &quot;IDs&quot;: &quot;ENSG00000126368&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.8879452347755432, &quot;y&quot;: 0.7187467217445374, &quot;IDs&quot;: &quot;ENSG00000126391&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.212958812713623, &quot;y&quot;: 2.1059601306915283, &quot;IDs&quot;: &quot;ENSG00000126550&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.994822978973389, &quot;y&quot;: 0.5229086875915527, &quot;IDs&quot;: &quot;ENSG00000126759&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.935813903808594, &quot;y&quot;: 2.6814780235290527, &quot;IDs&quot;: &quot;ENSG00000127152&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.646496295928955, &quot;y&quot;: 1.4540594816207886, &quot;IDs&quot;: &quot;ENSG00000127311&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.743837833404541, &quot;y&quot;: 0.5551391243934631, &quot;IDs&quot;: &quot;ENSG00000127334&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.6342014670372009, &quot;y&quot;: 0.24251703917980194, &quot;IDs&quot;: &quot;ENSG00000128342&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.518113374710083, &quot;y&quot;: 0.3962676525115967, &quot;IDs&quot;: &quot;ENSG00000128564&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.14882460236549377, &quot;y&quot;: 0.20201726257801056, &quot;IDs&quot;: &quot;ENSG00000128591&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5848002433776855, &quot;y&quot;: 1.9141058921813965, &quot;IDs&quot;: &quot;ENSG00000128594&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.098407745361328, &quot;y&quot;: -1.6947957277297974, &quot;IDs&quot;: &quot;ENSG00000129315&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.865152359008789, &quot;y&quot;: -1.11961030960083, &quot;IDs&quot;: &quot;ENSG00000129654&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.066672325134277, &quot;y&quot;: 1.1104243993759155, &quot;IDs&quot;: &quot;ENSG00000130054&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.7542219161987305, &quot;y&quot;: 1.2580928802490234, &quot;IDs&quot;: &quot;ENSG00000130203&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.6034445762634277, &quot;y&quot;: 1.6639702320098877, &quot;IDs&quot;: &quot;ENSG00000130489&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.247931480407715, &quot;y&quot;: -0.5544862151145935, &quot;IDs&quot;: &quot;ENSG00000130544&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.963700771331787, &quot;y&quot;: 1.1780345439910889, &quot;IDs&quot;: &quot;ENSG00000130711&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.025057315826416, &quot;y&quot;: 0.44315192103385925, &quot;IDs&quot;: &quot;ENSG00000130749&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.21187637746334076, &quot;y&quot;: -0.28882691264152527, &quot;IDs&quot;: &quot;ENSG00000131016&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4706575870513916, &quot;y&quot;: 1.8031773567199707, &quot;IDs&quot;: &quot;ENSG00000131080&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.5889148712158203, &quot;y&quot;: 1.159083366394043, &quot;IDs&quot;: &quot;ENSG00000131759&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.852034091949463, &quot;y&quot;: 0.7329072952270508, &quot;IDs&quot;: &quot;ENSG00000132326&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.63641357421875, &quot;y&quot;: -0.4689001441001892, &quot;IDs&quot;: &quot;ENSG00000132467&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5548512935638428, &quot;y&quot;: 0.6002752184867859, &quot;IDs&quot;: &quot;ENSG00000132510&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.3403873443603516, &quot;y&quot;: 0.33173176646232605, &quot;IDs&quot;: &quot;ENSG00000132661&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.242462396621704, &quot;y&quot;: 1.6633270978927612, &quot;IDs&quot;: &quot;ENSG00000132669&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.233980655670166, &quot;y&quot;: 1.9607350826263428, &quot;IDs&quot;: &quot;ENSG00000132872&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.105760335922241, &quot;y&quot;: -0.8719457387924194, &quot;IDs&quot;: &quot;ENSG00000133059&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.2134504318237305, &quot;y&quot;: -0.0410890132188797, &quot;IDs&quot;: &quot;ENSG00000133124&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.473996162414551, &quot;y&quot;: 1.5066726207733154, &quot;IDs&quot;: &quot;ENSG00000133639&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.5239933729171753, &quot;y&quot;: 0.12111370265483856, &quot;IDs&quot;: &quot;ENSG00000134107&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.1592303067445755, &quot;y&quot;: -0.27593377232551575, &quot;IDs&quot;: &quot;ENSG00000134531&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.552921295166016, &quot;y&quot;: 0.8905646800994873, &quot;IDs&quot;: &quot;ENSG00000134954&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.330872058868408, &quot;y&quot;: -0.3933563530445099, &quot;IDs&quot;: &quot;ENSG00000134987&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8109827041625977, &quot;y&quot;: -1.5774654150009155, &quot;IDs&quot;: &quot;ENSG00000135111&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.1880435943603516, &quot;y&quot;: -0.4821222126483917, &quot;IDs&quot;: &quot;ENSG00000135241&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5686190128326416, &quot;y&quot;: 1.564964771270752, &quot;IDs&quot;: &quot;ENSG00000135625&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9965274333953857, &quot;y&quot;: -3.3523311614990234, &quot;IDs&quot;: &quot;ENSG00000135899&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.507464647293091, &quot;y&quot;: 2.918370008468628, &quot;IDs&quot;: &quot;ENSG00000135974&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.595323085784912, &quot;y&quot;: 1.9520704746246338, &quot;IDs&quot;: &quot;ENSG00000136158&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.5753384828567505, &quot;y&quot;: -0.610046923160553, &quot;IDs&quot;: &quot;ENSG00000136634&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.958961248397827, &quot;y&quot;: 2.464693784713745, &quot;IDs&quot;: &quot;ENSG00000136866&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.914416790008545, &quot;y&quot;: 0.36849966645240784, &quot;IDs&quot;: &quot;ENSG00000136881&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.255014896392822, &quot;y&quot;: 1.883813738822937, &quot;IDs&quot;: &quot;ENSG00000136997&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.749894618988037, &quot;y&quot;: 0.0943598747253418, &quot;IDs&quot;: &quot;ENSG00000137040&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.3038218021392822, &quot;y&quot;: 1.8659512996673584, &quot;IDs&quot;: &quot;ENSG00000137331&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.656303882598877, &quot;y&quot;: 2.665938377380371, &quot;IDs&quot;: &quot;ENSG00000137449&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.1649582386016846, &quot;y&quot;: -1.8434797525405884, &quot;IDs&quot;: &quot;ENSG00000137494&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.755047082901001, &quot;y&quot;: 2.832665205001831, &quot;IDs&quot;: &quot;ENSG00000137558&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.747053623199463, &quot;y&quot;: 0.5856918692588806, &quot;IDs&quot;: &quot;ENSG00000137745&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.767002105712891, &quot;y&quot;: 1.681740164756775, &quot;IDs&quot;: &quot;ENSG00000138166&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.2432966232299805, &quot;y&quot;: -1.6805179119110107, &quot;IDs&quot;: &quot;ENSG00000138271&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.212073564529419, &quot;y&quot;: 2.9290764331817627, &quot;IDs&quot;: &quot;ENSG00000138386&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4182698726654053, &quot;y&quot;: 1.2522199153900146, &quot;IDs&quot;: &quot;ENSG00000139146&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.0651633739471436, &quot;y&quot;: 0.5444844365119934, &quot;IDs&quot;: &quot;ENSG00000139289&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.4340715408325195, &quot;y&quot;: 2.637474775314331, &quot;IDs&quot;: &quot;ENSG00000139438&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.545063018798828, &quot;y&quot;: 0.43678587675094604, &quot;IDs&quot;: &quot;ENSG00000139549&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.4176993370056152, &quot;y&quot;: 0.4365784823894501, &quot;IDs&quot;: &quot;ENSG00000139832&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.281035900115967, &quot;y&quot;: 1.0713276863098145, &quot;IDs&quot;: &quot;ENSG00000139874&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.247918725013733, &quot;y&quot;: 0.027160458266735077, &quot;IDs&quot;: &quot;ENSG00000139890&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.3623170852661133, &quot;y&quot;: 3.13511061668396, &quot;IDs&quot;: &quot;ENSG00000139946&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0983028411865234, &quot;y&quot;: -1.129006028175354, &quot;IDs&quot;: &quot;ENSG00000140030&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.78472375869751, &quot;y&quot;: 0.9601026177406311, &quot;IDs&quot;: &quot;ENSG00000140332&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.310910224914551, &quot;y&quot;: 1.6338326930999756, &quot;IDs&quot;: &quot;ENSG00000140450&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5928258895874023, &quot;y&quot;: 0.28436216711997986, &quot;IDs&quot;: &quot;ENSG00000140691&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.2057981491088867, &quot;y&quot;: 0.16580677032470703, &quot;IDs&quot;: &quot;ENSG00000141337&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.893391132354736, &quot;y&quot;: 1.71751070022583, &quot;IDs&quot;: &quot;ENSG00000141384&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.78807532787323, &quot;y&quot;: 1.778070330619812, &quot;IDs&quot;: &quot;ENSG00000141682&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8066656589508057, &quot;y&quot;: 0.11592521518468857, &quot;IDs&quot;: &quot;ENSG00000142396&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.3375833332538605, &quot;y&quot;: 0.17666617035865784, &quot;IDs&quot;: &quot;ENSG00000142867&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.012940406799316, &quot;y&quot;: 0.547231137752533, &quot;IDs&quot;: &quot;ENSG00000143067&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.417175769805908, &quot;y&quot;: 3.4263195991516113, &quot;IDs&quot;: &quot;ENSG00000143199&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8788371086120605, &quot;y&quot;: -1.4676116704940796, &quot;IDs&quot;: &quot;ENSG00000143322&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.319265127182007, &quot;y&quot;: 0.3733545243740082, &quot;IDs&quot;: &quot;ENSG00000143333&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.469113349914551, &quot;y&quot;: 2.5737078189849854, &quot;IDs&quot;: &quot;ENSG00000143507&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.1300370693206787, &quot;y&quot;: -1.8960915803909302, &quot;IDs&quot;: &quot;ENSG00000143614&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.420790672302246, &quot;y&quot;: 1.4958391189575195, &quot;IDs&quot;: &quot;ENSG00000143842&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.5149539709091187, &quot;y&quot;: 1.7141501903533936, &quot;IDs&quot;: &quot;ENSG00000143867&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.6533876657485962, &quot;y&quot;: 0.4633572995662689, &quot;IDs&quot;: &quot;ENSG00000144136&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.418947219848633, &quot;y&quot;: 1.3245131969451904, &quot;IDs&quot;: &quot;ENSG00000144550&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.823046684265137, &quot;y&quot;: 2.4585177898406982, &quot;IDs&quot;: &quot;ENSG00000144560&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.21369242668151855, &quot;y&quot;: 0.6267193555831909, &quot;IDs&quot;: &quot;ENSG00000144655&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.911700963973999, &quot;y&quot;: 0.7016751170158386, &quot;IDs&quot;: &quot;ENSG00000145107&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.926904678344727, &quot;y&quot;: 0.42295992374420166, &quot;IDs&quot;: &quot;ENSG00000145390&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.507495880126953, &quot;y&quot;: 2.415637254714966, &quot;IDs&quot;: &quot;ENSG00000145632&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.36691951751709, &quot;y&quot;: 3.171858310699463, &quot;IDs&quot;: &quot;ENSG00000145911&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.531639099121094, &quot;y&quot;: 0.027523066848516464, &quot;IDs&quot;: &quot;ENSG00000147050&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.5577414035797119, &quot;y&quot;: -0.14334259927272797, &quot;IDs&quot;: &quot;ENSG00000147117&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.411942005157471, &quot;y&quot;: 3.7779080867767334, &quot;IDs&quot;: &quot;ENSG00000147509&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.281744956970215, &quot;y&quot;: 0.3289858400821686, &quot;IDs&quot;: &quot;ENSG00000147883&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.377155303955078, &quot;y&quot;: -1.7133175134658813, &quot;IDs&quot;: &quot;ENSG00000148737&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.67375648021698, &quot;y&quot;: 0.07151725888252258, &quot;IDs&quot;: &quot;ENSG00000148841&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.564067840576172, &quot;y&quot;: 1.3050458431243896, &quot;IDs&quot;: &quot;ENSG00000148842&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.7116955518722534, &quot;y&quot;: 0.20732417702674866, &quot;IDs&quot;: &quot;ENSG00000148926&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.9819443225860596, &quot;y&quot;: 0.9452534317970276, &quot;IDs&quot;: &quot;ENSG00000149798&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.811427116394043, &quot;y&quot;: -1.4819241762161255, &quot;IDs&quot;: &quot;ENSG00000149948&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.079707145690918, &quot;y&quot;: 0.9628250002861023, &quot;IDs&quot;: &quot;ENSG00000149968&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.2676479816436768, &quot;y&quot;: 2.7159597873687744, &quot;IDs&quot;: &quot;ENSG00000150347&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.0671563148498535, &quot;y&quot;: 1.3793413639068604, &quot;IDs&quot;: &quot;ENSG00000150630&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.2883532047271729, &quot;y&quot;: -0.06555929034948349, &quot;IDs&quot;: &quot;ENSG00000150783&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.9022250771522522, &quot;y&quot;: 1.3187862634658813, &quot;IDs&quot;: &quot;ENSG00000150907&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.6773767471313477, &quot;y&quot;: 2.0313501358032227, &quot;IDs&quot;: &quot;ENSG00000150991&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.024682998657227, &quot;y&quot;: 0.7993251085281372, &quot;IDs&quot;: &quot;ENSG00000151014&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4773592948913574, &quot;y&quot;: -4.269937038421631, &quot;IDs&quot;: &quot;ENSG00000151131&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.956710338592529, &quot;y&quot;: 0.12982705235481262, &quot;IDs&quot;: &quot;ENSG00000151612&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9531400203704834, &quot;y&quot;: 2.1356945037841797, &quot;IDs&quot;: &quot;ENSG00000151883&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.482134819030762, &quot;y&quot;: 3.590216875076294, &quot;IDs&quot;: &quot;ENSG00000152409&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.659116744995117, &quot;y&quot;: -0.045912425965070724, &quot;IDs&quot;: &quot;ENSG00000152454&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.443917274475098, &quot;y&quot;: 2.8251941204071045, &quot;IDs&quot;: &quot;ENSG00000152661&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.292430877685547, &quot;y&quot;: 1.6613891124725342, &quot;IDs&quot;: &quot;ENSG00000152684&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.013381481170654, &quot;y&quot;: 2.139110565185547, &quot;IDs&quot;: &quot;ENSG00000153234&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.663818359375, &quot;y&quot;: 1.1687862873077393, &quot;IDs&quot;: &quot;ENSG00000153443&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.287713527679443, &quot;y&quot;: 3.7469446659088135, &quot;IDs&quot;: &quot;ENSG00000153721&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.862830400466919, &quot;y&quot;: -0.9262168407440186, &quot;IDs&quot;: &quot;ENSG00000153922&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.776778697967529, &quot;y&quot;: 1.2811758518218994, &quot;IDs&quot;: &quot;ENSG00000154479&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.551940679550171, &quot;y&quot;: 1.2763054370880127, &quot;IDs&quot;: &quot;ENSG00000155265&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.935052871704102, &quot;y&quot;: 0.487726092338562, &quot;IDs&quot;: &quot;ENSG00000155846&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.3889552056789398, &quot;y&quot;: 1.12057626247406, &quot;IDs&quot;: &quot;ENSG00000156273&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9635612964630127, &quot;y&quot;: 0.4878391623497009, &quot;IDs&quot;: &quot;ENSG00000156804&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.400333046913147, &quot;y&quot;: 1.2097327709197998, &quot;IDs&quot;: &quot;ENSG00000157502&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.1861138343811035, &quot;y&quot;: -1.6913400888442993, &quot;IDs&quot;: &quot;ENSG00000157540&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9691505432128906, &quot;y&quot;: 0.8795743584632874, &quot;IDs&quot;: &quot;ENSG00000157933&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.07457001507282257, &quot;y&quot;: 0.8456151485443115, &quot;IDs&quot;: &quot;ENSG00000158050&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7950518131256104, &quot;y&quot;: -4.03487491607666, &quot;IDs&quot;: &quot;ENSG00000158161&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.435866355895996, &quot;y&quot;: 1.1542294025421143, &quot;IDs&quot;: &quot;ENSG00000158373&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.362512111663818, &quot;y&quot;: 0.7491867542266846, &quot;IDs&quot;: &quot;ENSG00000158406&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.070489406585693, &quot;y&quot;: -0.23894540965557098, &quot;IDs&quot;: &quot;ENSG00000158615&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.128077268600464, &quot;y&quot;: -1.5245778560638428, &quot;IDs&quot;: &quot;ENSG00000160199&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.2750678062438965, &quot;y&quot;: 2.1263229846954346, &quot;IDs&quot;: &quot;ENSG00000160679&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9103827476501465, &quot;y&quot;: 1.232466697692871, &quot;IDs&quot;: &quot;ENSG00000160712&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.278855800628662, &quot;y&quot;: 0.3786918818950653, &quot;IDs&quot;: &quot;ENSG00000160888&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.502499580383301, &quot;y&quot;: -1.6549370288848877, &quot;IDs&quot;: &quot;ENSG00000160908&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.0772067978978157, &quot;y&quot;: 0.8161783218383789, &quot;IDs&quot;: &quot;ENSG00000162367&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.1888552904129028, &quot;y&quot;: 1.715940237045288, &quot;IDs&quot;: &quot;ENSG00000162407&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.562168598175049, &quot;y&quot;: 1.3983545303344727, &quot;IDs&quot;: &quot;ENSG00000162413&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.1964755058288574, &quot;y&quot;: -1.0694034099578857, &quot;IDs&quot;: &quot;ENSG00000162650&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.1166861057281494, &quot;y&quot;: -1.590245008468628, &quot;IDs&quot;: &quot;ENSG00000162711&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.941128253936768, &quot;y&quot;: -0.02352045848965645, &quot;IDs&quot;: &quot;ENSG00000162775&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8449923992156982, &quot;y&quot;: 2.705343008041382, &quot;IDs&quot;: &quot;ENSG00000162951&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9079115390777588, &quot;y&quot;: 0.7536495923995972, &quot;IDs&quot;: &quot;ENSG00000163092&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9289045333862305, &quot;y&quot;: 1.776465654373169, &quot;IDs&quot;: &quot;ENSG00000163216&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.719494819641113, &quot;y&quot;: 2.0656425952911377, &quot;IDs&quot;: &quot;ENSG00000163376&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4786293506622314, &quot;y&quot;: 0.7007438540458679, &quot;IDs&quot;: &quot;ENSG00000163399&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.1157065629959106, &quot;y&quot;: 1.23396897315979, &quot;IDs&quot;: &quot;ENSG00000163492&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5250418186187744, &quot;y&quot;: -1.2610554695129395, &quot;IDs&quot;: &quot;ENSG00000163513&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7306530475616455, &quot;y&quot;: -0.45096299052238464, &quot;IDs&quot;: &quot;ENSG00000163536&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9425101280212402, &quot;y&quot;: 2.928074836730957, &quot;IDs&quot;: &quot;ENSG00000163545&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2387752532958984, &quot;y&quot;: -0.7057549953460693, &quot;IDs&quot;: &quot;ENSG00000163577&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.5175931453704834, &quot;y&quot;: 0.4232708513736725, &quot;IDs&quot;: &quot;ENSG00000163638&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.479503631591797, &quot;y&quot;: 1.8332335948944092, &quot;IDs&quot;: &quot;ENSG00000163661&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.175163984298706, &quot;y&quot;: 0.403434693813324, &quot;IDs&quot;: &quot;ENSG00000163734&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.141746520996094, &quot;y&quot;: -0.1605665534734726, &quot;IDs&quot;: &quot;ENSG00000163735&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8403210639953613, &quot;y&quot;: -1.077936053276062, &quot;IDs&quot;: &quot;ENSG00000163823&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.2000928670167923, &quot;y&quot;: 0.5268382430076599, &quot;IDs&quot;: &quot;ENSG00000163874&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.948038935661316, &quot;y&quot;: -1.695677399635315, &quot;IDs&quot;: &quot;ENSG00000163877&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.216571092605591, &quot;y&quot;: -2.0235607624053955, &quot;IDs&quot;: &quot;ENSG00000163960&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.08286452293396, &quot;y&quot;: 2.3694868087768555, &quot;IDs&quot;: &quot;ENSG00000163961&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.247622489929199, &quot;y&quot;: 0.6537211537361145, &quot;IDs&quot;: &quot;ENSG00000164076&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.175734043121338, &quot;y&quot;: -1.4865827560424805, &quot;IDs&quot;: &quot;ENSG00000164080&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0496315956115723, &quot;y&quot;: 0.008309973403811455, &quot;IDs&quot;: &quot;ENSG00000164086&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.59039044380188, &quot;y&quot;: 2.8856801986694336, &quot;IDs&quot;: &quot;ENSG00000164116&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.3398218154907227, &quot;y&quot;: 3.6071646213531494, &quot;IDs&quot;: &quot;ENSG00000164128&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.655206680297852, &quot;y&quot;: 0.4239809215068817, &quot;IDs&quot;: &quot;ENSG00000164318&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.150369644165039, &quot;y&quot;: 2.634124755859375, &quot;IDs&quot;: &quot;ENSG00000164442&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.238558292388916, &quot;y&quot;: 3.5233542919158936, &quot;IDs&quot;: &quot;ENSG00000164463&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.693804979324341, &quot;y&quot;: 0.6990154385566711, &quot;IDs&quot;: &quot;ENSG00000164626&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.618675231933594, &quot;y&quot;: 1.250735878944397, &quot;IDs&quot;: &quot;ENSG00000164631&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.737438678741455, &quot;y&quot;: -1.983749508857727, &quot;IDs&quot;: &quot;ENSG00000164647&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.292769432067871, &quot;y&quot;: -1.6490559577941895, &quot;IDs&quot;: &quot;ENSG00000164776&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.2621972858905792, &quot;y&quot;: 1.0538722276687622, &quot;IDs&quot;: &quot;ENSG00000164794&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.758312702178955, &quot;y&quot;: 3.0259292125701904, &quot;IDs&quot;: &quot;ENSG00000164849&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.447076320648193, &quot;y&quot;: 1.4446014165878296, &quot;IDs&quot;: &quot;ENSG00000164949&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5353448390960693, &quot;y&quot;: 1.844345211982727, &quot;IDs&quot;: &quot;ENSG00000164951&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.000213861465454, &quot;y&quot;: -0.4642360806465149, &quot;IDs&quot;: &quot;ENSG00000165029&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.2709574699401855, &quot;y&quot;: 3.020948886871338, &quot;IDs&quot;: &quot;ENSG00000165312&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.6969048976898193, &quot;y&quot;: 0.4764760434627533, &quot;IDs&quot;: &quot;ENSG00000165355&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.132298231124878, &quot;y&quot;: 3.1112027168273926, &quot;IDs&quot;: &quot;ENSG00000165507&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.5975695252418518, &quot;y&quot;: -0.1997014880180359, &quot;IDs&quot;: &quot;ENSG00000165527&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.336811542510986, &quot;y&quot;: 1.8679684400558472, &quot;IDs&quot;: &quot;ENSG00000165572&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7019529342651367, &quot;y&quot;: 1.2774817943572998, &quot;IDs&quot;: &quot;ENSG00000165606&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.73442542552948, &quot;y&quot;: -0.02661929465830326, &quot;IDs&quot;: &quot;ENSG00000165702&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7145237922668457, &quot;y&quot;: -1.838592529296875, &quot;IDs&quot;: &quot;ENSG00000165813&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2963011264801025, &quot;y&quot;: 0.12391090393066406, &quot;IDs&quot;: &quot;ENSG00000166133&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.603787422180176, &quot;y&quot;: 1.0683449506759644, &quot;IDs&quot;: &quot;ENSG00000166170&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.2930917739868164, &quot;y&quot;: -0.9540700316429138, &quot;IDs&quot;: &quot;ENSG00000166394&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.2848923206329346, &quot;y&quot;: 0.36208483576774597, &quot;IDs&quot;: &quot;ENSG00000166450&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.626274585723877, &quot;y&quot;: 1.5267724990844727, &quot;IDs&quot;: &quot;ENSG00000166529&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.979274272918701, &quot;y&quot;: 0.3575356900691986, &quot;IDs&quot;: &quot;ENSG00000166670&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.972625732421875, &quot;y&quot;: 0.2466915249824524, &quot;IDs&quot;: &quot;ENSG00000166819&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.748992443084717, &quot;y&quot;: 0.3745783865451813, &quot;IDs&quot;: &quot;ENSG00000166839&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.456735610961914, &quot;y&quot;: 2.2428412437438965, &quot;IDs&quot;: &quot;ENSG00000166886&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.33048415184021, &quot;y&quot;: 0.6097237467765808, &quot;IDs&quot;: &quot;ENSG00000167011&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.17332547903060913, &quot;y&quot;: 0.4424397945404053, &quot;IDs&quot;: &quot;ENSG00000167034&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.780761241912842, &quot;y&quot;: 2.0093026161193848, &quot;IDs&quot;: &quot;ENSG00000167074&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.978057622909546, &quot;y&quot;: 0.7115927338600159, &quot;IDs&quot;: &quot;ENSG00000167173&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.677358150482178, &quot;y&quot;: 1.109390139579773, &quot;IDs&quot;: &quot;ENSG00000167377&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.2619149684906006, &quot;y&quot;: -4.4824538230896, &quot;IDs&quot;: &quot;ENSG00000167384&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.3155215978622437, &quot;y&quot;: -0.37670382857322693, &quot;IDs&quot;: &quot;ENSG00000167470&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.384949207305908, &quot;y&quot;: -2.532097101211548, &quot;IDs&quot;: &quot;ENSG00000167981&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.26207348704338074, &quot;y&quot;: 0.8776899576187134, &quot;IDs&quot;: &quot;ENSG00000168143&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.525254249572754, &quot;y&quot;: 2.893428087234497, &quot;IDs&quot;: &quot;ENSG00000168264&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.117889881134033, &quot;y&quot;: 1.0616365671157837, &quot;IDs&quot;: &quot;ENSG00000168298&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9773879051208496, &quot;y&quot;: -1.9167560338974, &quot;IDs&quot;: &quot;ENSG00000168404&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.4622979164123535, &quot;y&quot;: 1.3080954551696777, &quot;IDs&quot;: &quot;ENSG00000168679&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4244484901428223, &quot;y&quot;: 3.6014907360076904, &quot;IDs&quot;: &quot;ENSG00000168772&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0963075160980225, &quot;y&quot;: 3.0123050212860107, &quot;IDs&quot;: &quot;ENSG00000168806&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.6820549964904785, &quot;y&quot;: -0.7820316553115845, &quot;IDs&quot;: &quot;ENSG00000169242&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.9302225112915039, &quot;y&quot;: 0.4054214358329773, &quot;IDs&quot;: &quot;ENSG00000169252&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.4403347969055176, &quot;y&quot;: 1.909079670906067, &quot;IDs&quot;: &quot;ENSG00000169297&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5573394298553467, &quot;y&quot;: -1.7767398357391357, &quot;IDs&quot;: &quot;ENSG00000169306&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.4731793403625488, &quot;y&quot;: 1.122424602508545, &quot;IDs&quot;: &quot;ENSG00000169429&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.3556911945343018, &quot;y&quot;: -1.203226089477539, &quot;IDs&quot;: &quot;ENSG00000169548&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.550060749053955, &quot;y&quot;: -1.6041821241378784, &quot;IDs&quot;: &quot;ENSG00000169550&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.41173338890075684, &quot;y&quot;: -0.1830308735370636, &quot;IDs&quot;: &quot;ENSG00000169908&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.476742267608643, &quot;y&quot;: -0.27348169684410095, &quot;IDs&quot;: &quot;ENSG00000169981&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.971087694168091, &quot;y&quot;: -1.1156965494155884, &quot;IDs&quot;: &quot;ENSG00000170100&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.456012725830078, &quot;y&quot;: 3.7074244022369385, &quot;IDs&quot;: &quot;ENSG00000170191&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7199480533599854, &quot;y&quot;: 2.2282094955444336, &quot;IDs&quot;: &quot;ENSG00000170367&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5316805839538574, &quot;y&quot;: 0.7468543648719788, &quot;IDs&quot;: &quot;ENSG00000170385&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.084843635559082, &quot;y&quot;: 0.8337985277175903, &quot;IDs&quot;: &quot;ENSG00000170419&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.400229454040527, &quot;y&quot;: 1.374346137046814, &quot;IDs&quot;: &quot;ENSG00000170458&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.07326370477676392, &quot;y&quot;: 0.3849428594112396, &quot;IDs&quot;: &quot;ENSG00000170500&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.5407236814498901, &quot;y&quot;: 1.3658539056777954, &quot;IDs&quot;: &quot;ENSG00000170561&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5475668907165527, &quot;y&quot;: -1.3245269060134888, &quot;IDs&quot;: &quot;ENSG00000170631&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7428150177001953, &quot;y&quot;: -0.9639493823051453, &quot;IDs&quot;: &quot;ENSG00000170684&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.518775224685669, &quot;y&quot;: 1.9138494729995728, &quot;IDs&quot;: &quot;ENSG00000170786&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.4339959621429443, &quot;y&quot;: -0.39747828245162964, &quot;IDs&quot;: &quot;ENSG00000170881&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.861985206604004, &quot;y&quot;: 0.7090972661972046, &quot;IDs&quot;: &quot;ENSG00000170961&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.6961236000061035, &quot;y&quot;: -1.2191718816757202, &quot;IDs&quot;: &quot;ENSG00000170989&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.943899631500244, &quot;y&quot;: 1.7251567840576172, &quot;IDs&quot;: &quot;ENSG00000171044&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.5544043779373169, &quot;y&quot;: 1.20193350315094, &quot;IDs&quot;: &quot;ENSG00000171223&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4135615825653076, &quot;y&quot;: 3.522313117980957, &quot;IDs&quot;: &quot;ENSG00000171368&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4563541412353516, &quot;y&quot;: 2.2682456970214844, &quot;IDs&quot;: &quot;ENSG00000171451&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.07428240776062, &quot;y&quot;: -1.8989967107772827, &quot;IDs&quot;: &quot;ENSG00000171606&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.068277597427368, &quot;y&quot;: -1.745548963546753, &quot;IDs&quot;: &quot;ENSG00000171617&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.5378285050392151, &quot;y&quot;: 1.1410701274871826, &quot;IDs&quot;: &quot;ENSG00000171873&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.946507215499878, &quot;y&quot;: -1.5412358045578003, &quot;IDs&quot;: &quot;ENSG00000171940&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.2835114002227783, &quot;y&quot;: 0.12491629272699356, &quot;IDs&quot;: &quot;ENSG00000171970&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.2404191493988037, &quot;y&quot;: 1.5038374662399292, &quot;IDs&quot;: &quot;ENSG00000172201&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.0636985301971436, &quot;y&quot;: 2.2141616344451904, &quot;IDs&quot;: &quot;ENSG00000172216&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.060383319854736, &quot;y&quot;: -2.016040325164795, &quot;IDs&quot;: &quot;ENSG00000172752&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2852513790130615, &quot;y&quot;: -1.366278886795044, &quot;IDs&quot;: &quot;ENSG00000173110&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.29546961188316345, &quot;y&quot;: 0.46006661653518677, &quot;IDs&quot;: &quot;ENSG00000173237&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.82844352722168, &quot;y&quot;: 0.23793698847293854, &quot;IDs&quot;: &quot;ENSG00000173253&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.8887298107147217, &quot;y&quot;: 0.5825484991073608, &quot;IDs&quot;: &quot;ENSG00000173334&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.539902687072754, &quot;y&quot;: 2.1233909130096436, &quot;IDs&quot;: &quot;ENSG00000173451&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.7490860223770142, &quot;y&quot;: 1.0748049020767212, &quot;IDs&quot;: &quot;ENSG00000173875&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.165551662445068, &quot;y&quot;: 3.438570976257324, &quot;IDs&quot;: &quot;ENSG00000174004&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.176175594329834, &quot;y&quot;: 0.13606290519237518, &quot;IDs&quot;: &quot;ENSG00000174010&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.8860273361206055, &quot;y&quot;: 0.07213342189788818, &quot;IDs&quot;: &quot;ENSG00000174136&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.022128105163574, &quot;y&quot;: 2.262515068054199, &quot;IDs&quot;: &quot;ENSG00000174206&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.8036823272705078, &quot;y&quot;: 0.9486901760101318, &quot;IDs&quot;: &quot;ENSG00000174276&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.940412521362305, &quot;y&quot;: 1.7210828065872192, &quot;IDs&quot;: &quot;ENSG00000175040&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.359779357910156, &quot;y&quot;: 3.464202404022217, &quot;IDs&quot;: &quot;ENSG00000175197&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.4476711750030518, &quot;y&quot;: -0.1208178699016571, &quot;IDs&quot;: &quot;ENSG00000175213&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.939854860305786, &quot;y&quot;: -1.5492048263549805, &quot;IDs&quot;: &quot;ENSG00000175302&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.1019943431019783, &quot;y&quot;: 0.38552480936050415, &quot;IDs&quot;: &quot;ENSG00000175426&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.245828151702881, &quot;y&quot;: 0.9158859848976135, &quot;IDs&quot;: &quot;ENSG00000175592&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.1969666481018066, &quot;y&quot;: 2.1991376876831055, &quot;IDs&quot;: &quot;ENSG00000175984&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.609462857246399, &quot;y&quot;: 0.9422860741615295, &quot;IDs&quot;: &quot;ENSG00000176125&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.675235271453857, &quot;y&quot;: 1.5818517208099365, &quot;IDs&quot;: &quot;ENSG00000176318&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.501588821411133, &quot;y&quot;: 2.7167041301727295, &quot;IDs&quot;: &quot;ENSG00000176399&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.3317267894744873, &quot;y&quot;: -2.7994494438171387, &quot;IDs&quot;: &quot;ENSG00000176593&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7447922229766846, &quot;y&quot;: 0.6465418338775635, &quot;IDs&quot;: &quot;ENSG00000176697&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.33950138092041, &quot;y&quot;: 0.3827032744884491, &quot;IDs&quot;: &quot;ENSG00000177144&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.801148414611816, &quot;y&quot;: -0.07635575532913208, &quot;IDs&quot;: &quot;ENSG00000177173&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.804093360900879, &quot;y&quot;: 1.384844183921814, &quot;IDs&quot;: &quot;ENSG00000177182&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7203657627105713, &quot;y&quot;: 0.6522392630577087, &quot;IDs&quot;: &quot;ENSG00000177191&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0025765895843506, &quot;y&quot;: 1.9031733274459839, &quot;IDs&quot;: &quot;ENSG00000177283&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.211158752441406, &quot;y&quot;: 2.8303539752960205, &quot;IDs&quot;: &quot;ENSG00000177606&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.291866302490234, &quot;y&quot;: 0.078268863260746, &quot;IDs&quot;: &quot;ENSG00000177688&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.099099636077881, &quot;y&quot;: 1.9646610021591187, &quot;IDs&quot;: &quot;ENSG00000177707&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.253368377685547, &quot;y&quot;: 1.5530970096588135, &quot;IDs&quot;: &quot;ENSG00000177721&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.2140060663223267, &quot;y&quot;: 0.5418399572372437, &quot;IDs&quot;: &quot;ENSG00000177875&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.611908197402954, &quot;y&quot;: 2.069936513900757, &quot;IDs&quot;: &quot;ENSG00000178150&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.897171974182129, &quot;y&quot;: 0.6732292175292969, &quot;IDs&quot;: &quot;ENSG00000178209&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.486572265625, &quot;y&quot;: -0.3760250210762024, &quot;IDs&quot;: &quot;ENSG00000178229&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.207531929016113, &quot;y&quot;: 1.2492941617965698, &quot;IDs&quot;: &quot;ENSG00000178233&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.389726161956787, &quot;y&quot;: -1.6321815252304077, &quot;IDs&quot;: &quot;ENSG00000178235&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.8455266952514648, &quot;y&quot;: -3.2300522327423096, &quot;IDs&quot;: &quot;ENSG00000178338&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.883955478668213, &quot;y&quot;: 2.165733575820923, &quot;IDs&quot;: &quot;ENSG00000178404&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7716939449310303, &quot;y&quot;: 1.2425329685211182, &quot;IDs&quot;: &quot;ENSG00000178409&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9245227575302124, &quot;y&quot;: 0.8467019200325012, &quot;IDs&quot;: &quot;ENSG00000178462&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4987826347351074, &quot;y&quot;: -0.9100309610366821, &quot;IDs&quot;: &quot;ENSG00000178502&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.373865127563477, &quot;y&quot;: 2.351290225982666, &quot;IDs&quot;: &quot;ENSG00000178573&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.453027725219727, &quot;y&quot;: 1.617024540901184, &quot;IDs&quot;: &quot;ENSG00000178607&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.0893305540084839, &quot;y&quot;: 1.2412750720977783, &quot;IDs&quot;: &quot;ENSG00000178636&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.1578197479248047, &quot;y&quot;: 1.1692053079605103, &quot;IDs&quot;: &quot;ENSG00000178695&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.048213958740234, &quot;y&quot;: 0.270609050989151, &quot;IDs&quot;: &quot;ENSG00000178965&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.508113384246826, &quot;y&quot;: 2.464846611022949, &quot;IDs&quot;: &quot;ENSG00000178977&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.6656938195228577, &quot;y&quot;: 0.149512380361557, &quot;IDs&quot;: &quot;ENSG00000179046&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.045295715332031, &quot;y&quot;: 1.294793963432312, &quot;IDs&quot;: &quot;ENSG00000179059&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.198265075683594, &quot;y&quot;: 2.1216647624969482, &quot;IDs&quot;: &quot;ENSG00000179094&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.303680419921875, &quot;y&quot;: 0.29291924834251404, &quot;IDs&quot;: &quot;ENSG00000179219&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.882039785385132, &quot;y&quot;: 3.6051642894744873, &quot;IDs&quot;: &quot;ENSG00000179348&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.3509000539779663, &quot;y&quot;: 0.3768945634365082, &quot;IDs&quot;: &quot;ENSG00000179542&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9876995086669922, &quot;y&quot;: 1.4541232585906982, &quot;IDs&quot;: &quot;ENSG00000179674&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5558135509490967, &quot;y&quot;: 3.218670606613159, &quot;IDs&quot;: &quot;ENSG00000179774&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.815545082092285, &quot;y&quot;: -1.4789180755615234, &quot;IDs&quot;: &quot;ENSG00000179817&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.1221858263015747, &quot;y&quot;: -1.6001663208007812, &quot;IDs&quot;: &quot;ENSG00000179935&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.845650315284729, &quot;y&quot;: 1.7404123544692993, &quot;IDs&quot;: &quot;ENSG00000180257&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2708520889282227, &quot;y&quot;: 3.505566358566284, &quot;IDs&quot;: &quot;ENSG00000180447&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.4542524218559265, &quot;y&quot;: -4.621989727020264, &quot;IDs&quot;: &quot;ENSG00000180479&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.066796779632568, &quot;y&quot;: 0.4853838086128235, &quot;IDs&quot;: &quot;ENSG00000180530&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.009026050567627, &quot;y&quot;: -0.49456819891929626, &quot;IDs&quot;: &quot;ENSG00000180573&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.197389155626297, &quot;y&quot;: 0.024318503215909004, &quot;IDs&quot;: &quot;ENSG00000180596&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0820069313049316, &quot;y&quot;: 2.5016896724700928, &quot;IDs&quot;: &quot;ENSG00000180660&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.289422988891602, &quot;y&quot;: 0.14729295670986176, &quot;IDs&quot;: &quot;ENSG00000180777&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.869749665260315, &quot;y&quot;: -1.7088290452957153, &quot;IDs&quot;: &quot;ENSG00000180957&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.359427452087402, &quot;y&quot;: 0.7872061133384705, &quot;IDs&quot;: &quot;ENSG00000181222&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.415680170059204, &quot;y&quot;: 1.0217883586883545, &quot;IDs&quot;: &quot;ENSG00000181274&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.376224040985107, &quot;y&quot;: 1.4653607606887817, &quot;IDs&quot;: &quot;ENSG00000181449&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.490516185760498, &quot;y&quot;: 0.8317587375640869, &quot;IDs&quot;: &quot;ENSG00000181467&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.58955717086792, &quot;y&quot;: 0.5550874471664429, &quot;IDs&quot;: &quot;ENSG00000182224&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.1405150890350342, &quot;y&quot;: 1.5548295974731445, &quot;IDs&quot;: &quot;ENSG00000182253&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.082869529724121, &quot;y&quot;: 0.391623854637146, &quot;IDs&quot;: &quot;ENSG00000182308&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.711041212081909, &quot;y&quot;: -1.7931041717529297, &quot;IDs&quot;: &quot;ENSG00000182318&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7579593658447266, &quot;y&quot;: -2.385343313217163, &quot;IDs&quot;: &quot;ENSG00000182324&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7081756591796875, &quot;y&quot;: 2.621368885040283, &quot;IDs&quot;: &quot;ENSG00000182405&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.127767562866211, &quot;y&quot;: 1.7382997274398804, &quot;IDs&quot;: &quot;ENSG00000182810&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.8008075952529907, &quot;y&quot;: 1.0623106956481934, &quot;IDs&quot;: &quot;ENSG00000182816&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.06852388381958, &quot;y&quot;: 1.3743265867233276, &quot;IDs&quot;: &quot;ENSG00000183154&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.820428371429443, &quot;y&quot;: 2.1663355827331543, &quot;IDs&quot;: &quot;ENSG00000183161&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.855789661407471, &quot;y&quot;: 0.5247055888175964, &quot;IDs&quot;: &quot;ENSG00000183354&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.002402305603027, &quot;y&quot;: 2.5166337490081787, &quot;IDs&quot;: &quot;ENSG00000183778&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.560187339782715, &quot;y&quot;: 0.7845079898834229, &quot;IDs&quot;: &quot;ENSG00000183779&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.4286045730113983, &quot;y&quot;: -4.20300817489624, &quot;IDs&quot;: &quot;ENSG00000183808&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.0702900886535645, &quot;y&quot;: 0.13026906549930573, &quot;IDs&quot;: &quot;ENSG00000183960&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.1219325065612793, &quot;y&quot;: 2.9357497692108154, &quot;IDs&quot;: &quot;ENSG00000184371&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.82375955581665, &quot;y&quot;: 0.8165572285652161, &quot;IDs&quot;: &quot;ENSG00000184530&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.014594793319702, &quot;y&quot;: -2.4378631114959717, &quot;IDs&quot;: &quot;ENSG00000184564&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.7037770748138428, &quot;y&quot;: -0.5352928638458252, &quot;IDs&quot;: &quot;ENSG00000184588&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.00124979019165, &quot;y&quot;: 1.9466216564178467, &quot;IDs&quot;: &quot;ENSG00000184678&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.2339558601379395, &quot;y&quot;: 0.7729804515838623, &quot;IDs&quot;: &quot;ENSG00000184897&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.3847241401672363, &quot;y&quot;: 1.3752182722091675, &quot;IDs&quot;: &quot;ENSG00000184937&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.552087426185608, &quot;y&quot;: 0.3714701235294342, &quot;IDs&quot;: &quot;ENSG00000185022&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.0540266036987305, &quot;y&quot;: 2.4337925910949707, &quot;IDs&quot;: &quot;ENSG00000185112&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.305583953857422, &quot;y&quot;: 1.0094521045684814, &quot;IDs&quot;: &quot;ENSG00000185130&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.736865043640137, &quot;y&quot;: 0.8549683094024658, &quot;IDs&quot;: &quot;ENSG00000185479&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.9237444400787354, &quot;y&quot;: 0.6053680777549744, &quot;IDs&quot;: &quot;ENSG00000185551&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.232983112335205, &quot;y&quot;: 1.692937970161438, &quot;IDs&quot;: &quot;ENSG00000185610&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5201797485351562, &quot;y&quot;: 0.4587961733341217, &quot;IDs&quot;: &quot;ENSG00000185650&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.4435930252075195, &quot;y&quot;: 1.2412195205688477, &quot;IDs&quot;: &quot;ENSG00000185730&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.0201191902160645, &quot;y&quot;: 1.3951177597045898, &quot;IDs&quot;: &quot;ENSG00000185883&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6296451091766357, &quot;y&quot;: -2.5579006671905518, &quot;IDs&quot;: &quot;ENSG00000185900&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.527686595916748, &quot;y&quot;: 2.8563506603240967, &quot;IDs&quot;: &quot;ENSG00000185920&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.3998291492462158, &quot;y&quot;: -0.20822055637836456, &quot;IDs&quot;: &quot;ENSG00000186019&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.18876838684082, &quot;y&quot;: -0.12999756634235382, &quot;IDs&quot;: &quot;ENSG00000186130&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.614898443222046, &quot;y&quot;: 0.31660640239715576, &quot;IDs&quot;: &quot;ENSG00000186174&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.5493736267089844, &quot;y&quot;: 1.0717582702636719, &quot;IDs&quot;: &quot;ENSG00000186222&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.9481356143951416, &quot;y&quot;: 2.1048998832702637, &quot;IDs&quot;: &quot;ENSG00000186230&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.171757936477661, &quot;y&quot;: 1.306291937828064, &quot;IDs&quot;: &quot;ENSG00000186352&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.1948132514953613, &quot;y&quot;: 1.769683599472046, &quot;IDs&quot;: &quot;ENSG00000186446&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2167961597442627, &quot;y&quot;: -2.8333256244659424, &quot;IDs&quot;: &quot;ENSG00000186469&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.100920677185059, &quot;y&quot;: -2.403817892074585, &quot;IDs&quot;: &quot;ENSG00000186652&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.00262188911438, &quot;y&quot;: -0.1657652109861374, &quot;IDs&quot;: &quot;ENSG00000186810&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.158080816268921, &quot;y&quot;: 0.1766638606786728, &quot;IDs&quot;: &quot;ENSG00000187193&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.587157249450684, &quot;y&quot;: -0.7121368050575256, &quot;IDs&quot;: &quot;ENSG00000187475&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.031124591827393, &quot;y&quot;: 3.6980807781219482, &quot;IDs&quot;: &quot;ENSG00000187479&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8612101078033447, &quot;y&quot;: 2.939262628555298, &quot;IDs&quot;: &quot;ENSG00000187601&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.207374572753906, &quot;y&quot;: 0.47927576303482056, &quot;IDs&quot;: &quot;ENSG00000187678&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.1139426231384277, &quot;y&quot;: 0.20521576702594757, &quot;IDs&quot;: &quot;ENSG00000187801&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.048597812652588, &quot;y&quot;: 1.4690707921981812, &quot;IDs&quot;: &quot;ENSG00000187815&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.816558361053467, &quot;y&quot;: 0.035060394555330276, &quot;IDs&quot;: &quot;ENSG00000187957&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.3270010948181152, &quot;y&quot;: 2.6199429035186768, &quot;IDs&quot;: &quot;ENSG00000188033&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.386795997619629, &quot;y&quot;: 1.0582835674285889, &quot;IDs&quot;: &quot;ENSG00000188042&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.388122081756592, &quot;y&quot;: 2.200333833694458, &quot;IDs&quot;: &quot;ENSG00000188167&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8446779251098633, &quot;y&quot;: 0.05801365152001381, &quot;IDs&quot;: &quot;ENSG00000188295&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4181039333343506, &quot;y&quot;: 0.24421317875385284, &quot;IDs&quot;: &quot;ENSG00000188483&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.400262355804443, &quot;y&quot;: -0.8977950811386108, &quot;IDs&quot;: &quot;ENSG00000188761&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5859525203704834, &quot;y&quot;: -0.45637860894203186, &quot;IDs&quot;: &quot;ENSG00000189060&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.688787937164307, &quot;y&quot;: 0.21260756254196167, &quot;IDs&quot;: &quot;ENSG00000189149&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.104462146759033, &quot;y&quot;: -1.2163482904434204, &quot;IDs&quot;: &quot;ENSG00000189233&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.445498466491699, &quot;y&quot;: -0.7718767523765564, &quot;IDs&quot;: &quot;ENSG00000189320&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.211449146270752, &quot;y&quot;: 0.7796993255615234, &quot;IDs&quot;: &quot;ENSG00000189369&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2154414653778076, &quot;y&quot;: 2.6232380867004395, &quot;IDs&quot;: &quot;ENSG00000196152&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.6165554523468018, &quot;y&quot;: 1.0304123163223267, &quot;IDs&quot;: &quot;ENSG00000196189&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.639287233352661, &quot;y&quot;: 2.9720354080200195, &quot;IDs&quot;: &quot;ENSG00000196277&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0572550296783447, &quot;y&quot;: -0.7678778171539307, &quot;IDs&quot;: &quot;ENSG00000196345&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.871523380279541, &quot;y&quot;: 0.3334861397743225, &quot;IDs&quot;: &quot;ENSG00000196357&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.727833271026611, &quot;y&quot;: 0.8018924593925476, &quot;IDs&quot;: &quot;ENSG00000196417&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.476069927215576, &quot;y&quot;: 2.4046289920806885, &quot;IDs&quot;: &quot;ENSG00000196418&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.028831958770752, &quot;y&quot;: -0.1572834849357605, &quot;IDs&quot;: &quot;ENSG00000196428&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.524469375610352, &quot;y&quot;: 0.7472126483917236, &quot;IDs&quot;: &quot;ENSG00000196611&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.7565467357635498, &quot;y&quot;: 0.9386289715766907, &quot;IDs&quot;: &quot;ENSG00000196664&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0954277515411377, &quot;y&quot;: 0.9770070910453796, &quot;IDs&quot;: &quot;ENSG00000196724&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.508989334106445, &quot;y&quot;: 1.3612004518508911, &quot;IDs&quot;: &quot;ENSG00000196747&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.175897121429443, &quot;y&quot;: -3.7884509563446045, &quot;IDs&quot;: &quot;ENSG00000196756&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.703976631164551, &quot;y&quot;: 1.7417627573013306, &quot;IDs&quot;: &quot;ENSG00000196781&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.080620288848877, &quot;y&quot;: -1.1550804376602173, &quot;IDs&quot;: &quot;ENSG00000196782&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.467460632324219, &quot;y&quot;: 2.191246747970581, &quot;IDs&quot;: &quot;ENSG00000196787&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.410970687866211, &quot;y&quot;: 0.8346816301345825, &quot;IDs&quot;: &quot;ENSG00000196873&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.100951671600342, &quot;y&quot;: 3.3346333503723145, &quot;IDs&quot;: &quot;ENSG00000197019&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.457983493804932, &quot;y&quot;: -1.0259449481964111, &quot;IDs&quot;: &quot;ENSG00000197182&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.694350242614746, &quot;y&quot;: 1.776320219039917, &quot;IDs&quot;: &quot;ENSG00000197238&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.065349578857422, &quot;y&quot;: 1.8401538133621216, &quot;IDs&quot;: &quot;ENSG00000197483&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.119745254516602, &quot;y&quot;: 0.7404987812042236, &quot;IDs&quot;: &quot;ENSG00000197506&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.303680181503296, &quot;y&quot;: -0.5166753530502319, &quot;IDs&quot;: &quot;ENSG00000197579&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.3583872318267822, &quot;y&quot;: 0.8217598795890808, &quot;IDs&quot;: &quot;ENSG00000197588&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.8654831647872925, &quot;y&quot;: 1.8221267461776733, &quot;IDs&quot;: &quot;ENSG00000197647&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.8539484739303589, &quot;y&quot;: -3.7239933013916016, &quot;IDs&quot;: &quot;ENSG00000197714&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.493640661239624, &quot;y&quot;: 1.3598251342773438, &quot;IDs&quot;: &quot;ENSG00000197780&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.124648571014404, &quot;y&quot;: 0.7417594790458679, &quot;IDs&quot;: &quot;ENSG00000197837&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.154287338256836, &quot;y&quot;: -0.146508127450943, &quot;IDs&quot;: &quot;ENSG00000197903&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.23513126373291, &quot;y&quot;: 0.08755791187286377, &quot;IDs&quot;: &quot;ENSG00000198010&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.629554748535156, &quot;y&quot;: 0.4695282578468323, &quot;IDs&quot;: &quot;ENSG00000198298&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.908431053161621, &quot;y&quot;: 2.0323493480682373, &quot;IDs&quot;: &quot;ENSG00000198300&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.1715006828308105, &quot;y&quot;: 0.6934686303138733, &quot;IDs&quot;: &quot;ENSG00000198312&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.478539228439331, &quot;y&quot;: 0.8822968006134033, &quot;IDs&quot;: &quot;ENSG00000198342&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.33378791809082, &quot;y&quot;: 1.4224152565002441, &quot;IDs&quot;: &quot;ENSG00000198369&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.670668363571167, &quot;y&quot;: 1.7466803789138794, &quot;IDs&quot;: &quot;ENSG00000198576&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6535463333129883, &quot;y&quot;: -1.668065071105957, &quot;IDs&quot;: &quot;ENSG00000198783&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.497220516204834, &quot;y&quot;: -0.5463569760322571, &quot;IDs&quot;: &quot;ENSG00000198785&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.2158100605010986, &quot;y&quot;: 2.750199317932129, &quot;IDs&quot;: &quot;ENSG00000198807&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.034315586090088, &quot;y&quot;: -0.2853665351867676, &quot;IDs&quot;: &quot;ENSG00000198815&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.1653699278831482, &quot;y&quot;: 0.6008233428001404, &quot;IDs&quot;: &quot;ENSG00000198835&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.9897143840789795, &quot;y&quot;: 1.2575340270996094, &quot;IDs&quot;: &quot;ENSG00000198841&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.3842267990112305, &quot;y&quot;: 0.5696046948432922, &quot;IDs&quot;: &quot;ENSG00000198900&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.4461927115917206, &quot;y&quot;: 1.1723365783691406, &quot;IDs&quot;: &quot;ENSG00000198945&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.093076229095459, &quot;y&quot;: 3.7472927570343018, &quot;IDs&quot;: &quot;ENSG00000198961&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.880890130996704, &quot;y&quot;: 2.3951659202575684, &quot;IDs&quot;: &quot;ENSG00000198975&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.654301404953003, &quot;y&quot;: 0.9291269183158875, &quot;IDs&quot;: &quot;ENSG00000199787&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5307395458221436, &quot;y&quot;: 2.358590841293335, &quot;IDs&quot;: &quot;ENSG00000201085&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.577712535858154, &quot;y&quot;: 1.8629692792892456, &quot;IDs&quot;: &quot;ENSG00000201470&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.9018168449401855, &quot;y&quot;: 2.2762537002563477, &quot;IDs&quot;: &quot;ENSG00000201581&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.500819206237793, &quot;y&quot;: 1.2796326875686646, &quot;IDs&quot;: &quot;ENSG00000202078&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.00738000869751, &quot;y&quot;: 0.7122423052787781, &quot;IDs&quot;: &quot;ENSG00000202111&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.0399620532989502, &quot;y&quot;: 0.8104596138000488, &quot;IDs&quot;: &quot;ENSG00000202358&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.350296497344971, &quot;y&quot;: 1.8875620365142822, &quot;IDs&quot;: &quot;ENSG00000202515&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.9285545349121094, &quot;y&quot;: -1.533955454826355, &quot;IDs&quot;: &quot;ENSG00000203335&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.9748711585998535, &quot;y&quot;: 2.7492029666900635, &quot;IDs&quot;: &quot;ENSG00000203435&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.744889736175537, &quot;y&quot;: 0.3927609622478485, &quot;IDs&quot;: &quot;ENSG00000203688&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6006219387054443, &quot;y&quot;: 3.6201963424682617, &quot;IDs&quot;: &quot;ENSG00000203877&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.0619120597839355, &quot;y&quot;: 0.08694087713956833, &quot;IDs&quot;: &quot;ENSG00000204086&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.3579680919647217, &quot;y&quot;: 2.4351885318756104, &quot;IDs&quot;: &quot;ENSG00000204186&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.818783283233643, &quot;y&quot;: -0.600944459438324, &quot;IDs&quot;: &quot;ENSG00000204256&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.698439598083496, &quot;y&quot;: 1.1346805095672607, &quot;IDs&quot;: &quot;ENSG00000204421&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2213990688323975, &quot;y&quot;: 2.6342055797576904, &quot;IDs&quot;: &quot;ENSG00000204438&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.9861015677452087, &quot;y&quot;: 0.2249368578195572, &quot;IDs&quot;: &quot;ENSG00000204460&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.489659547805786, &quot;y&quot;: -2.6195032596588135, &quot;IDs&quot;: &quot;ENSG00000204514&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.3761563301086426, &quot;y&quot;: 1.178654670715332, &quot;IDs&quot;: &quot;ENSG00000204519&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.2170357704162598, &quot;y&quot;: -1.7460627555847168, &quot;IDs&quot;: &quot;ENSG00000204524&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.1454291343688965, &quot;y&quot;: 1.1967250108718872, &quot;IDs&quot;: &quot;ENSG00000204611&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.998011589050293, &quot;y&quot;: 1.2451274394989014, &quot;IDs&quot;: &quot;ENSG00000204625&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.189959764480591, &quot;y&quot;: -1.058251142501831, &quot;IDs&quot;: &quot;ENSG00000204876&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.5694177150726318, &quot;y&quot;: -0.48463281989097595, &quot;IDs&quot;: &quot;ENSG00000204915&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.535531520843506, &quot;y&quot;: 0.1010875478386879, &quot;IDs&quot;: &quot;ENSG00000204993&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.3839536905288696, &quot;y&quot;: -0.016815247014164925, &quot;IDs&quot;: &quot;ENSG00000205485&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.65467643737793, &quot;y&quot;: 1.7092044353485107, &quot;IDs&quot;: &quot;ENSG00000205649&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9109933376312256, &quot;y&quot;: 0.294345885515213, &quot;IDs&quot;: &quot;ENSG00000205830&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.672240734100342, &quot;y&quot;: 1.7062041759490967, &quot;IDs&quot;: &quot;ENSG00000205927&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.746480941772461, &quot;y&quot;: 0.733222246170044, &quot;IDs&quot;: &quot;ENSG00000206337&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.043135166168213, &quot;y&quot;: 1.1327723264694214, &quot;IDs&quot;: &quot;ENSG00000206448&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.495272159576416, &quot;y&quot;: 1.4517512321472168, &quot;IDs&quot;: &quot;ENSG00000206573&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.3472213745117188, &quot;y&quot;: -1.5969821214675903, &quot;IDs&quot;: &quot;ENSG00000206603&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.9560065269470215, &quot;y&quot;: 1.5359162092208862, &quot;IDs&quot;: &quot;ENSG00000206633&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.390443801879883, &quot;y&quot;: -1.8047544956207275, &quot;IDs&quot;: &quot;ENSG00000206634&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.1975514888763428, &quot;y&quot;: 0.8323816061019897, &quot;IDs&quot;: &quot;ENSG00000206921&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.2605252265930176, &quot;y&quot;: -0.14967872202396393, &quot;IDs&quot;: &quot;ENSG00000207280&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9256575107574463, &quot;y&quot;: 0.24503205716609955, &quot;IDs&quot;: &quot;ENSG00000207445&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.082752704620361, &quot;y&quot;: 0.2707061469554901, &quot;IDs&quot;: &quot;ENSG00000207523&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.6200835704803467, &quot;y&quot;: -2.370209217071533, &quot;IDs&quot;: &quot;ENSG00000207721&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.465142011642456, &quot;y&quot;: 1.759325385093689, &quot;IDs&quot;: &quot;ENSG00000207725&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.391328811645508, &quot;y&quot;: 0.25462639331817627, &quot;IDs&quot;: &quot;ENSG00000207870&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.377415180206299, &quot;y&quot;: 2.511411666870117, &quot;IDs&quot;: &quot;ENSG00000207971&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8094966411590576, &quot;y&quot;: -0.9890189170837402, &quot;IDs&quot;: &quot;ENSG00000207973&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.571242332458496, &quot;y&quot;: 1.7443718910217285, &quot;IDs&quot;: &quot;ENSG00000208037&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.600811004638672, &quot;y&quot;: 1.011765956878662, &quot;IDs&quot;: &quot;ENSG00000211459&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.556776762008667, &quot;y&quot;: -0.7214559316635132, &quot;IDs&quot;: &quot;ENSG00000212724&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7803268432617188, &quot;y&quot;: 2.4721744060516357, &quot;IDs&quot;: &quot;ENSG00000212916&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.709407329559326, &quot;y&quot;: 0.3644633889198303, &quot;IDs&quot;: &quot;ENSG00000213060&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.412496566772461, &quot;y&quot;: 1.1006669998168945, &quot;IDs&quot;: &quot;ENSG00000213144&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.650301933288574, &quot;y&quot;: 3.5005674362182617, &quot;IDs&quot;: &quot;ENSG00000213232&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.244874954223633, &quot;y&quot;: 1.7506866455078125, &quot;IDs&quot;: &quot;ENSG00000213416&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.093652725219727, &quot;y&quot;: 2.030601739883423, &quot;IDs&quot;: &quot;ENSG00000213453&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.776123523712158, &quot;y&quot;: 1.754754900932312, &quot;IDs&quot;: &quot;ENSG00000213638&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0204405784606934, &quot;y&quot;: 1.1806074380874634, &quot;IDs&quot;: &quot;ENSG00000213923&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.2901158332824707, &quot;y&quot;: -2.5933215618133545, &quot;IDs&quot;: &quot;ENSG00000213997&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.176008462905884, &quot;y&quot;: 0.10200747847557068, &quot;IDs&quot;: &quot;ENSG00000214029&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.5841619968414307, &quot;y&quot;: 1.0462992191314697, &quot;IDs&quot;: &quot;ENSG00000214093&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.427959680557251, &quot;y&quot;: -1.6080400943756104, &quot;IDs&quot;: &quot;ENSG00000214875&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.453498363494873, &quot;y&quot;: 2.8645882606506348, &quot;IDs&quot;: &quot;ENSG00000215105&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.5240415334701538, &quot;y&quot;: 0.7762800455093384, &quot;IDs&quot;: &quot;ENSG00000215120&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.6513619422912598, &quot;y&quot;: -2.093703508377075, &quot;IDs&quot;: &quot;ENSG00000215154&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6649177074432373, &quot;y&quot;: 1.3410758972167969, &quot;IDs&quot;: &quot;ENSG00000215156&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.830642223358154, &quot;y&quot;: 2.675506591796875, &quot;IDs&quot;: &quot;ENSG00000215284&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7343955039978027, &quot;y&quot;: -1.3522264957427979, &quot;IDs&quot;: &quot;ENSG00000215388&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.475813865661621, &quot;y&quot;: -0.031532373279333115, &quot;IDs&quot;: &quot;ENSG00000215417&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.111355781555176, &quot;y&quot;: 2.464749574661255, &quot;IDs&quot;: &quot;ENSG00000215474&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.278448581695557, &quot;y&quot;: 0.8331673741340637, &quot;IDs&quot;: &quot;ENSG00000215840&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9361037015914917, &quot;y&quot;: -0.8868784308433533, &quot;IDs&quot;: &quot;ENSG00000215861&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.652831554412842, &quot;y&quot;: 0.9217637777328491, &quot;IDs&quot;: &quot;ENSG00000215875&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.07021427154541, &quot;y&quot;: 0.5958292484283447, &quot;IDs&quot;: &quot;ENSG00000217128&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.708886623382568, &quot;y&quot;: 0.8857787847518921, &quot;IDs&quot;: &quot;ENSG00000217159&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.719892740249634, &quot;y&quot;: 0.5917839407920837, &quot;IDs&quot;: &quot;ENSG00000217275&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.6614236831665039, &quot;y&quot;: 1.1245535612106323, &quot;IDs&quot;: &quot;ENSG00000217801&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.7260648012161255, &quot;y&quot;: -0.43290722370147705, &quot;IDs&quot;: &quot;ENSG00000218109&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.61221981048584, &quot;y&quot;: 3.124185085296631, &quot;IDs&quot;: &quot;ENSG00000218819&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.136854887008667, &quot;y&quot;: -0.07813508063554764, &quot;IDs&quot;: &quot;ENSG00000219470&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.535172462463379, &quot;y&quot;: 1.1096619367599487, &quot;IDs&quot;: &quot;ENSG00000221949&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0047569274902344, &quot;y&quot;: -1.782334566116333, &quot;IDs&quot;: &quot;ENSG00000222489&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.6910834312438965, &quot;y&quot;: 0.5605683326721191, &quot;IDs&quot;: &quot;ENSG00000223356&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8936750888824463, &quot;y&quot;: 0.7480827569961548, &quot;IDs&quot;: &quot;ENSG00000223390&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.527377605438232, &quot;y&quot;: 2.0859198570251465, &quot;IDs&quot;: &quot;ENSG00000223461&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.017329692840576, &quot;y&quot;: 1.043212652206421, &quot;IDs&quot;: &quot;ENSG00000223547&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.6113481521606445, &quot;y&quot;: 2.2621853351593018, &quot;IDs&quot;: &quot;ENSG00000223599&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.1647183895111084, &quot;y&quot;: -0.7824325561523438, &quot;IDs&quot;: &quot;ENSG00000223692&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.4531593322753906, &quot;y&quot;: -0.34100377559661865, &quot;IDs&quot;: &quot;ENSG00000223760&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.182368278503418, &quot;y&quot;: -1.5940297842025757, &quot;IDs&quot;: &quot;ENSG00000223773&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.899402618408203, &quot;y&quot;: -2.3139710426330566, &quot;IDs&quot;: &quot;ENSG00000223959&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7820277214050293, &quot;y&quot;: -2.54579496383667, &quot;IDs&quot;: &quot;ENSG00000224032&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.4489545822143555, &quot;y&quot;: 1.2453534603118896, &quot;IDs&quot;: &quot;ENSG00000224080&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.4510505199432373, &quot;y&quot;: 0.2214748114347458, &quot;IDs&quot;: &quot;ENSG00000224083&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8293557167053223, &quot;y&quot;: 3.2438175678253174, &quot;IDs&quot;: &quot;ENSG00000224109&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.672767162322998, &quot;y&quot;: -0.04142560437321663, &quot;IDs&quot;: &quot;ENSG00000224255&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.017160415649414, &quot;y&quot;: 0.4915759861469269, &quot;IDs&quot;: &quot;ENSG00000224271&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.1624601036310196, &quot;y&quot;: 0.5680514574050903, &quot;IDs&quot;: &quot;ENSG00000224675&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.974531888961792, &quot;y&quot;: -1.1274888515472412, &quot;IDs&quot;: &quot;ENSG00000224679&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.040433406829834, &quot;y&quot;: -1.813480257987976, &quot;IDs&quot;: &quot;ENSG00000224680&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9606683254241943, &quot;y&quot;: 0.9622854590415955, &quot;IDs&quot;: &quot;ENSG00000225206&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8397343158721924, &quot;y&quot;: 2.044879913330078, &quot;IDs&quot;: &quot;ENSG00000225213&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2269370555877686, &quot;y&quot;: 2.111016273498535, &quot;IDs&quot;: &quot;ENSG00000225448&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.294518232345581, &quot;y&quot;: -0.6409329175949097, &quot;IDs&quot;: &quot;ENSG00000225578&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.548049211502075, &quot;y&quot;: -2.033845901489258, &quot;IDs&quot;: &quot;ENSG00000225813&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.750628471374512, &quot;y&quot;: 2.015895128250122, &quot;IDs&quot;: &quot;ENSG00000225973&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.5496824979782104, &quot;y&quot;: -3.9500699043273926, &quot;IDs&quot;: &quot;ENSG00000226380&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.212812066078186, &quot;y&quot;: -3.77370023727417, &quot;IDs&quot;: &quot;ENSG00000226396&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8830883502960205, &quot;y&quot;: 2.9311821460723877, &quot;IDs&quot;: &quot;ENSG00000226581&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.0186285972595215, &quot;y&quot;: 2.254417657852173, &quot;IDs&quot;: &quot;ENSG00000226652&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.190393090248108, &quot;y&quot;: 0.10280933976173401, &quot;IDs&quot;: &quot;ENSG00000226763&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9787189960479736, &quot;y&quot;: 1.6544748544692993, &quot;IDs&quot;: &quot;ENSG00000226767&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6283762454986572, &quot;y&quot;: -1.999838948249817, &quot;IDs&quot;: &quot;ENSG00000226954&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7797789573669434, &quot;y&quot;: 2.798736572265625, &quot;IDs&quot;: &quot;ENSG00000227210&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.014448802918195724, &quot;y&quot;: 0.615943431854248, &quot;IDs&quot;: &quot;ENSG00000227258&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.3069980144500732, &quot;y&quot;: -1.5730127096176147, &quot;IDs&quot;: &quot;ENSG00000227267&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.457643508911133, &quot;y&quot;: 1.267995834350586, &quot;IDs&quot;: &quot;ENSG00000227376&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9576950073242188, &quot;y&quot;: 3.2121570110321045, &quot;IDs&quot;: &quot;ENSG00000227379&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5443716049194336, &quot;y&quot;: -1.8089932203292847, &quot;IDs&quot;: &quot;ENSG00000227698&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8187203407287598, &quot;y&quot;: 2.9393179416656494, &quot;IDs&quot;: &quot;ENSG00000227910&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.4535932540893555, &quot;y&quot;: -0.2913621664047241, &quot;IDs&quot;: &quot;ENSG00000227963&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.901272773742676, &quot;y&quot;: 1.492466688156128, &quot;IDs&quot;: &quot;ENSG00000228005&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.297677993774414, &quot;y&quot;: 1.2346616983413696, &quot;IDs&quot;: &quot;ENSG00000228124&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.567195415496826, &quot;y&quot;: 2.085861921310425, &quot;IDs&quot;: &quot;ENSG00000228158&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.864596843719482, &quot;y&quot;: 1.5719828605651855, &quot;IDs&quot;: &quot;ENSG00000228184&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.622145652770996, &quot;y&quot;: 1.9782487154006958, &quot;IDs&quot;: &quot;ENSG00000228192&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9693104028701782, &quot;y&quot;: 0.6261552572250366, &quot;IDs&quot;: &quot;ENSG00000228294&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6653432846069336, &quot;y&quot;: 0.5423390865325928, &quot;IDs&quot;: &quot;ENSG00000228485&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8081510066986084, &quot;y&quot;: 1.9408856630325317, &quot;IDs&quot;: &quot;ENSG00000228527&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.186598777770996, &quot;y&quot;: -0.0928490161895752, &quot;IDs&quot;: &quot;ENSG00000228606&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7957570552825928, &quot;y&quot;: 0.7136320471763611, &quot;IDs&quot;: &quot;ENSG00000228615&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.8289923667907715, &quot;y&quot;: 2.622401237487793, &quot;IDs&quot;: &quot;ENSG00000228672&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.452476739883423, &quot;y&quot;: -2.374910354614258, &quot;IDs&quot;: &quot;ENSG00000228709&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.199680328369141, &quot;y&quot;: 1.1920360326766968, &quot;IDs&quot;: &quot;ENSG00000229124&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.642916440963745, &quot;y&quot;: -0.7835845351219177, &quot;IDs&quot;: &quot;ENSG00000229222&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.285068988800049, &quot;y&quot;: 1.2319610118865967, &quot;IDs&quot;: &quot;ENSG00000229419&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.428687572479248, &quot;y&quot;: 2.6577484607696533, &quot;IDs&quot;: &quot;ENSG00000229473&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.006458044052124, &quot;y&quot;: 0.634072482585907, &quot;IDs&quot;: &quot;ENSG00000229587&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9615561962127686, &quot;y&quot;: -1.151810646057129, &quot;IDs&quot;: &quot;ENSG00000229808&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.925490617752075, &quot;y&quot;: 0.6305499076843262, &quot;IDs&quot;: &quot;ENSG00000230002&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.825589656829834, &quot;y&quot;: 2.2320785522460938, &quot;IDs&quot;: &quot;ENSG00000230071&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.518812417984009, &quot;y&quot;: 3.239321708679199, &quot;IDs&quot;: &quot;ENSG00000230149&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5647103786468506, &quot;y&quot;: -1.4128143787384033, &quot;IDs&quot;: &quot;ENSG00000230176&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.021793365478516, &quot;y&quot;: 1.0020947456359863, &quot;IDs&quot;: &quot;ENSG00000230450&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.972776889801025, &quot;y&quot;: 0.22305959463119507, &quot;IDs&quot;: &quot;ENSG00000230532&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.72764253616333, &quot;y&quot;: 1.8465701341629028, &quot;IDs&quot;: &quot;ENSG00000230581&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.036880016326904, &quot;y&quot;: -1.8241947889328003, &quot;IDs&quot;: &quot;ENSG00000230797&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.058516263961792, &quot;y&quot;: 3.009580135345459, &quot;IDs&quot;: &quot;ENSG00000230844&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.461109638214111, &quot;y&quot;: 1.670422077178955, &quot;IDs&quot;: &quot;ENSG00000230898&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.3966710567474365, &quot;y&quot;: -0.2713494896888733, &quot;IDs&quot;: &quot;ENSG00000230914&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.129091262817383, &quot;y&quot;: 2.0655574798583984, &quot;IDs&quot;: &quot;ENSG00000230922&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.863266944885254, &quot;y&quot;: 2.122929096221924, &quot;IDs&quot;: &quot;ENSG00000230955&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.890375852584839, &quot;y&quot;: 2.9654345512390137, &quot;IDs&quot;: &quot;ENSG00000230987&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.405590057373047, &quot;y&quot;: -1.3317221403121948, &quot;IDs&quot;: &quot;ENSG00000231023&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.249471664428711, &quot;y&quot;: 0.523226261138916, &quot;IDs&quot;: &quot;ENSG00000231154&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.205974817276001, &quot;y&quot;: 1.528939127922058, &quot;IDs&quot;: &quot;ENSG00000231177&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0243988037109375, &quot;y&quot;: 2.9203133583068848, &quot;IDs&quot;: &quot;ENSG00000231233&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.017211420461535454, &quot;y&quot;: 0.941846489906311, &quot;IDs&quot;: &quot;ENSG00000231290&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8305141925811768, &quot;y&quot;: -0.38359975814819336, &quot;IDs&quot;: &quot;ENSG00000231565&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.278491973876953, &quot;y&quot;: 1.8415405750274658, &quot;IDs&quot;: &quot;ENSG00000231681&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7456037998199463, &quot;y&quot;: 2.0057694911956787, &quot;IDs&quot;: &quot;ENSG00000231721&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.125770092010498, &quot;y&quot;: -0.2226073294878006, &quot;IDs&quot;: &quot;ENSG00000231806&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.077869176864624, &quot;y&quot;: 2.6168179512023926, &quot;IDs&quot;: &quot;ENSG00000231940&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.963260531425476, &quot;y&quot;: 1.0168037414550781, &quot;IDs&quot;: &quot;ENSG00000232040&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.034988522529602, &quot;y&quot;: 0.5183504223823547, &quot;IDs&quot;: &quot;ENSG00000232044&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.051710844039917, &quot;y&quot;: 2.1732358932495117, &quot;IDs&quot;: &quot;ENSG00000232202&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.819754123687744, &quot;y&quot;: 1.627208948135376, &quot;IDs&quot;: &quot;ENSG00000232301&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.216094493865967, &quot;y&quot;: 2.6814444065093994, &quot;IDs&quot;: &quot;ENSG00000232303&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.047191619873047, &quot;y&quot;: -0.34645286202430725, &quot;IDs&quot;: &quot;ENSG00000232445&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.24954080581665, &quot;y&quot;: 0.8184884786605835, &quot;IDs&quot;: &quot;ENSG00000232486&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.838730812072754, &quot;y&quot;: 1.4625381231307983, &quot;IDs&quot;: &quot;ENSG00000232487&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5916812419891357, &quot;y&quot;: 1.1345711946487427, &quot;IDs&quot;: &quot;ENSG00000232519&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5333900451660156, &quot;y&quot;: -1.6294622421264648, &quot;IDs&quot;: &quot;ENSG00000232623&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.253690242767334, &quot;y&quot;: 0.2617758512496948, &quot;IDs&quot;: &quot;ENSG00000232638&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7398452758789062, &quot;y&quot;: -1.3194167613983154, &quot;IDs&quot;: &quot;ENSG00000232679&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6777184009552, &quot;y&quot;: 1.794236421585083, &quot;IDs&quot;: &quot;ENSG00000232810&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.986611366271973, &quot;y&quot;: 1.4988820552825928, &quot;IDs&quot;: &quot;ENSG00000232891&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.0690985694527626, &quot;y&quot;: -0.5738008618354797, &quot;IDs&quot;: &quot;ENSG00000232956&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.4270546436309814, &quot;y&quot;: 2.2859723567962646, &quot;IDs&quot;: &quot;ENSG00000233028&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.035796880722046, &quot;y&quot;: 2.5473551750183105, &quot;IDs&quot;: &quot;ENSG00000233117&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.68632173538208, &quot;y&quot;: 0.9878090620040894, &quot;IDs&quot;: &quot;ENSG00000233221&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.001607894897461, &quot;y&quot;: 3.7086663246154785, &quot;IDs&quot;: &quot;ENSG00000233230&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.6809377670288086, &quot;y&quot;: -0.2715105712413788, &quot;IDs&quot;: &quot;ENSG00000233242&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.92301082611084, &quot;y&quot;: 3.3769471645355225, &quot;IDs&quot;: &quot;ENSG00000233325&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.7385454177856445, &quot;y&quot;: -0.3711646795272827, &quot;IDs&quot;: &quot;ENSG00000233397&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.811137318611145, &quot;y&quot;: -0.39359161257743835, &quot;IDs&quot;: &quot;ENSG00000233491&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.3320889472961426, &quot;y&quot;: 0.8793490529060364, &quot;IDs&quot;: &quot;ENSG00000233542&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.545859336853027, &quot;y&quot;: 3.6476006507873535, &quot;IDs&quot;: &quot;ENSG00000233614&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.333103656768799, &quot;y&quot;: 1.0447651147842407, &quot;IDs&quot;: &quot;ENSG00000233671&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.6562790870666504, &quot;y&quot;: 0.15936541557312012, &quot;IDs&quot;: &quot;ENSG00000233757&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.682534694671631, &quot;y&quot;: 2.0072481632232666, &quot;IDs&quot;: &quot;ENSG00000234219&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.79064416885376, &quot;y&quot;: 1.4029960632324219, &quot;IDs&quot;: &quot;ENSG00000234290&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.23188591003418, &quot;y&quot;: 2.393648624420166, &quot;IDs&quot;: &quot;ENSG00000234492&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.192445755004883, &quot;y&quot;: 2.7364511489868164, &quot;IDs&quot;: &quot;ENSG00000234737&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.558420181274414, &quot;y&quot;: 0.9214323163032532, &quot;IDs&quot;: &quot;ENSG00000234776&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.4413275718688965, &quot;y&quot;: 0.2274610549211502, &quot;IDs&quot;: &quot;ENSG00000234912&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.015403747558594, &quot;y&quot;: 1.683284044265747, &quot;IDs&quot;: &quot;ENSG00000234981&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.3773415088653564, &quot;y&quot;: 0.3111395239830017, &quot;IDs&quot;: &quot;ENSG00000234999&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.125060081481934, &quot;y&quot;: 3.7128024101257324, &quot;IDs&quot;: &quot;ENSG00000235026&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.7999587059021, &quot;y&quot;: 1.2033462524414062, &quot;IDs&quot;: &quot;ENSG00000235272&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.3399152755737305, &quot;y&quot;: 1.9955182075500488, &quot;IDs&quot;: &quot;ENSG00000235529&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.94665265083313, &quot;y&quot;: 2.743070363998413, &quot;IDs&quot;: &quot;ENSG00000235618&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.066389560699463, &quot;y&quot;: 1.9988963603973389, &quot;IDs&quot;: &quot;ENSG00000235631&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.3470869064331055, &quot;y&quot;: 2.975618362426758, &quot;IDs&quot;: &quot;ENSG00000235651&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5914649963378906, &quot;y&quot;: -1.796197533607483, &quot;IDs&quot;: &quot;ENSG00000236120&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.367274522781372, &quot;y&quot;: -2.567392587661743, &quot;IDs&quot;: &quot;ENSG00000236184&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.075534820556641, &quot;y&quot;: -1.1966749429702759, &quot;IDs&quot;: &quot;ENSG00000236255&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.85701584815979, &quot;y&quot;: 2.345961809158325, &quot;IDs&quot;: &quot;ENSG00000236296&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.673686981201172, &quot;y&quot;: 1.6472935676574707, &quot;IDs&quot;: &quot;ENSG00000236643&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.328649044036865, &quot;y&quot;: 0.7005609273910522, &quot;IDs&quot;: &quot;ENSG00000236956&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.277973175048828, &quot;y&quot;: -1.3830217123031616, &quot;IDs&quot;: &quot;ENSG00000237013&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.38377678394317627, &quot;y&quot;: 0.9339991211891174, &quot;IDs&quot;: &quot;ENSG00000237149&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.630755424499512, &quot;y&quot;: 0.5608397126197815, &quot;IDs&quot;: &quot;ENSG00000237268&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.792095899581909, &quot;y&quot;: -2.99393367767334, &quot;IDs&quot;: &quot;ENSG00000237330&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.7444642782211304, &quot;y&quot;: 1.9235429763793945, &quot;IDs&quot;: &quot;ENSG00000237436&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.9376847743988037, &quot;y&quot;: 0.660899817943573, &quot;IDs&quot;: &quot;ENSG00000237499&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.841616153717041, &quot;y&quot;: 2.406959295272827, &quot;IDs&quot;: &quot;ENSG00000237531&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.826038360595703, &quot;y&quot;: 2.8298404216766357, &quot;IDs&quot;: &quot;ENSG00000237605&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.283099174499512, &quot;y&quot;: 2.112104892730713, &quot;IDs&quot;: &quot;ENSG00000237788&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.332492828369141, &quot;y&quot;: 0.664842426776886, &quot;IDs&quot;: &quot;ENSG00000237863&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.401287317276001, &quot;y&quot;: 0.3150911331176758, &quot;IDs&quot;: &quot;ENSG00000237870&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.9765143394470215, &quot;y&quot;: 2.3269877433776855, &quot;IDs&quot;: &quot;ENSG00000237892&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.827490329742432, &quot;y&quot;: 0.31267446279525757, &quot;IDs&quot;: &quot;ENSG00000238062&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.101675510406494, &quot;y&quot;: 2.0524885654449463, &quot;IDs&quot;: &quot;ENSG00000238129&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.310136795043945, &quot;y&quot;: 2.8653621673583984, &quot;IDs&quot;: &quot;ENSG00000238286&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.01177978515625, &quot;y&quot;: -1.9308210611343384, &quot;IDs&quot;: &quot;ENSG00000238317&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8727729320526123, &quot;y&quot;: -1.999969720840454, &quot;IDs&quot;: &quot;ENSG00000238578&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.15803861618042, &quot;y&quot;: 0.37540364265441895, &quot;IDs&quot;: &quot;ENSG00000238886&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.531235694885254, &quot;y&quot;: 0.6395954489707947, &quot;IDs&quot;: &quot;ENSG00000239218&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.417559623718262, &quot;y&quot;: 3.168376922607422, &quot;IDs&quot;: &quot;ENSG00000239389&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.967152118682861, &quot;y&quot;: 1.9606000185012817, &quot;IDs&quot;: &quot;ENSG00000239474&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.6823108196258545, &quot;y&quot;: -0.1282585859298706, &quot;IDs&quot;: &quot;ENSG00000239620&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.556173801422119, &quot;y&quot;: 0.71033775806427, &quot;IDs&quot;: &quot;ENSG00000240211&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.014934062957764, &quot;y&quot;: 0.9643881320953369, &quot;IDs&quot;: &quot;ENSG00000240288&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.973349094390869, &quot;y&quot;: -2.119394063949585, &quot;IDs&quot;: &quot;ENSG00000240441&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.8790432214736938, &quot;y&quot;: 1.943684458732605, &quot;IDs&quot;: &quot;ENSG00000240476&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.1672704219818115, &quot;y&quot;: 0.6372645497322083, &quot;IDs&quot;: &quot;ENSG00000240498&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.1699700355529785, &quot;y&quot;: 1.3678805828094482, &quot;IDs&quot;: &quot;ENSG00000240668&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.289608955383301, &quot;y&quot;: 1.7871413230895996, &quot;IDs&quot;: &quot;ENSG00000240695&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.387352705001831, &quot;y&quot;: -0.13564038276672363, &quot;IDs&quot;: &quot;ENSG00000240750&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2368433475494385, &quot;y&quot;: 1.8567143678665161, &quot;IDs&quot;: &quot;ENSG00000240889&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.132839202880859, &quot;y&quot;: 1.9397735595703125, &quot;IDs&quot;: &quot;ENSG00000240964&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.7757412195205688, &quot;y&quot;: 1.5286146402359009, &quot;IDs&quot;: &quot;ENSG00000241112&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.886688232421875, &quot;y&quot;: 2.5219388008117676, &quot;IDs&quot;: &quot;ENSG00000241157&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.407264709472656, &quot;y&quot;: 2.114382266998291, &quot;IDs&quot;: &quot;ENSG00000241269&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.883218765258789, &quot;y&quot;: -1.5974864959716797, &quot;IDs&quot;: &quot;ENSG00000241280&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.06830009818077087, &quot;y&quot;: 0.15631146728992462, &quot;IDs&quot;: &quot;ENSG00000241313&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7817294597625732, &quot;y&quot;: 2.2981650829315186, &quot;IDs&quot;: &quot;ENSG00000241361&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9981744289398193, &quot;y&quot;: 1.628942847251892, &quot;IDs&quot;: &quot;ENSG00000241547&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.463489055633545, &quot;y&quot;: 1.4293545484542847, &quot;IDs&quot;: &quot;ENSG00000241684&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8320508003234863, &quot;y&quot;: -0.44971466064453125, &quot;IDs&quot;: &quot;ENSG00000241749&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.972174644470215, &quot;y&quot;: -0.36258935928344727, &quot;IDs&quot;: &quot;ENSG00000241764&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.641712665557861, &quot;y&quot;: 2.161990165710449, &quot;IDs&quot;: &quot;ENSG00000242020&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.470290660858154, &quot;y&quot;: 2.6375720500946045, &quot;IDs&quot;: &quot;ENSG00000242474&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.5761613845825195, &quot;y&quot;: 1.1716557741165161, &quot;IDs&quot;: &quot;ENSG00000242599&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.486669540405273, &quot;y&quot;: 0.9500781893730164, &quot;IDs&quot;: &quot;ENSG00000242689&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.163926124572754, &quot;y&quot;: 2.7276644706726074, &quot;IDs&quot;: &quot;ENSG00000242853&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.26332688331604, &quot;y&quot;: 0.581577479839325, &quot;IDs&quot;: &quot;ENSG00000243819&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.901731967926025, &quot;y&quot;: 0.12562546133995056, &quot;IDs&quot;: &quot;ENSG00000243854&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.2410454750061035, &quot;y&quot;: -1.5731652975082397, &quot;IDs&quot;: &quot;ENSG00000243960&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.154501438140869, &quot;y&quot;: 0.26144710183143616, &quot;IDs&quot;: &quot;ENSG00000244346&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.955101728439331, &quot;y&quot;: 3.2588107585906982, &quot;IDs&quot;: &quot;ENSG00000244485&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.5820112228393555, &quot;y&quot;: 1.700730323791504, &quot;IDs&quot;: &quot;ENSG00000245904&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.073212146759033, &quot;y&quot;: 1.276643991470337, &quot;IDs&quot;: &quot;ENSG00000246130&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.960290908813477, &quot;y&quot;: 1.7718591690063477, &quot;IDs&quot;: &quot;ENSG00000246250&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4873247146606445, &quot;y&quot;: 2.7725536823272705, &quot;IDs&quot;: &quot;ENSG00000246350&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6859982013702393, &quot;y&quot;: -1.6903876066207886, &quot;IDs&quot;: &quot;ENSG00000246363&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2001137733459473, &quot;y&quot;: 2.5801963806152344, &quot;IDs&quot;: &quot;ENSG00000247092&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7003982067108154, &quot;y&quot;: 0.5167144536972046, &quot;IDs&quot;: &quot;ENSG00000247626&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.8844865560531616, &quot;y&quot;: -3.3289177417755127, &quot;IDs&quot;: &quot;ENSG00000248124&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.7209705114364624, &quot;y&quot;: 1.6959031820297241, &quot;IDs&quot;: &quot;ENSG00000248370&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.160072326660156, &quot;y&quot;: 1.4521613121032715, &quot;IDs&quot;: &quot;ENSG00000248461&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2413651943206787, &quot;y&quot;: -0.7500470280647278, &quot;IDs&quot;: &quot;ENSG00000248476&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.589661598205566, &quot;y&quot;: 2.0136919021606445, &quot;IDs&quot;: &quot;ENSG00000248503&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8341150283813477, &quot;y&quot;: -1.641876459121704, &quot;IDs&quot;: &quot;ENSG00000248943&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.366989612579346, &quot;y&quot;: -0.33721622824668884, &quot;IDs&quot;: &quot;ENSG00000249026&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.405550718307495, &quot;y&quot;: 0.7753974795341492, &quot;IDs&quot;: &quot;ENSG00000249345&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.7440986037254333, &quot;y&quot;: -0.1097845509648323, &quot;IDs&quot;: &quot;ENSG00000249378&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.5233154296875, &quot;y&quot;: 2.0183749198913574, &quot;IDs&quot;: &quot;ENSG00000249637&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.03931999206543, &quot;y&quot;: 2.8295416831970215, &quot;IDs&quot;: &quot;ENSG00000249661&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.020796775817871, &quot;y&quot;: 0.14096546173095703, &quot;IDs&quot;: &quot;ENSG00000249850&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.470897197723389, &quot;y&quot;: -0.9231025576591492, &quot;IDs&quot;: &quot;ENSG00000249884&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5867486000061035, &quot;y&quot;: 2.840623378753662, &quot;IDs&quot;: &quot;ENSG00000249926&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.6375004053115845, &quot;y&quot;: -0.8160728216171265, &quot;IDs&quot;: &quot;ENSG00000249992&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.3737270832061768, &quot;y&quot;: -0.621957540512085, &quot;IDs&quot;: &quot;ENSG00000250072&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.076683282852173, &quot;y&quot;: -0.6668282747268677, &quot;IDs&quot;: &quot;ENSG00000250657&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.389419078826904, &quot;y&quot;: 2.1517298221588135, &quot;IDs&quot;: &quot;ENSG00000250853&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.861845016479492, &quot;y&quot;: -1.87087881565094, &quot;IDs&quot;: &quot;ENSG00000250992&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.4900255501270294, &quot;y&quot;: 0.19744068384170532, &quot;IDs&quot;: &quot;ENSG00000251023&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.785676121711731, &quot;y&quot;: -0.5219542384147644, &quot;IDs&quot;: &quot;ENSG00000251127&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.196719169616699, &quot;y&quot;: -0.0256949570029974, &quot;IDs&quot;: &quot;ENSG00000251129&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9563242197036743, &quot;y&quot;: 1.823818325996399, &quot;IDs&quot;: &quot;ENSG00000251141&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.097813367843628, &quot;y&quot;: -1.6485599279403687, &quot;IDs&quot;: &quot;ENSG00000251194&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.41268253326416, &quot;y&quot;: 2.9547603130340576, &quot;IDs&quot;: &quot;ENSG00000251226&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.630730628967285, &quot;y&quot;: -1.8554110527038574, &quot;IDs&quot;: &quot;ENSG00000251323&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.428560972213745, &quot;y&quot;: -2.5768067836761475, &quot;IDs&quot;: &quot;ENSG00000251348&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.828460216522217, &quot;y&quot;: 0.33293092250823975, &quot;IDs&quot;: &quot;ENSG00000251441&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.1787409782409668, &quot;y&quot;: 0.44423165917396545, &quot;IDs&quot;: &quot;ENSG00000251536&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.151083946228027, &quot;y&quot;: -1.8819667100906372, &quot;IDs&quot;: &quot;ENSG00000251598&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.104371547698975, &quot;y&quot;: 1.2351715564727783, &quot;IDs&quot;: &quot;ENSG00000251682&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2204549312591553, &quot;y&quot;: -2.415113925933838, &quot;IDs&quot;: &quot;ENSG00000251791&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.4239654541015625, &quot;y&quot;: 3.6833934783935547, &quot;IDs&quot;: &quot;ENSG00000251867&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8305447101593018, &quot;y&quot;: -1.7817473411560059, &quot;IDs&quot;: &quot;ENSG00000252050&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.1103973388671875, &quot;y&quot;: 1.9447087049484253, &quot;IDs&quot;: &quot;ENSG00000253218&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.390167236328125, &quot;y&quot;: -1.1882117986679077, &quot;IDs&quot;: &quot;ENSG00000253230&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.275981903076172, &quot;y&quot;: 0.6248764991760254, &quot;IDs&quot;: &quot;ENSG00000253256&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.5399413704872131, &quot;y&quot;: -0.16235843300819397, &quot;IDs&quot;: &quot;ENSG00000253276&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.198165416717529, &quot;y&quot;: 1.3917162418365479, &quot;IDs&quot;: &quot;ENSG00000253307&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.3961052894592285, &quot;y&quot;: 1.8219993114471436, &quot;IDs&quot;: &quot;ENSG00000253399&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.538130044937134, &quot;y&quot;: 3.421992063522339, &quot;IDs&quot;: &quot;ENSG00000253616&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.1629307270050049, &quot;y&quot;: 1.0089458227157593, &quot;IDs&quot;: &quot;ENSG00000253633&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5815155506134033, &quot;y&quot;: 0.04111000895500183, &quot;IDs&quot;: &quot;ENSG00000253775&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.344263792037964, &quot;y&quot;: 1.5795058012008667, &quot;IDs&quot;: &quot;ENSG00000253993&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.971979141235352, &quot;y&quot;: 1.8473888635635376, &quot;IDs&quot;: &quot;ENSG00000254094&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.1005096435546875, &quot;y&quot;: 0.33905333280563354, &quot;IDs&quot;: &quot;ENSG00000254207&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.132394790649414, &quot;y&quot;: -0.5421384572982788, &quot;IDs&quot;: &quot;ENSG00000254454&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.6896685361862183, &quot;y&quot;: 1.1487500667572021, &quot;IDs&quot;: &quot;ENSG00000254530&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.07927942276001, &quot;y&quot;: 3.7039318084716797, &quot;IDs&quot;: &quot;ENSG00000254547&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.624886512756348, &quot;y&quot;: 2.662691831588745, &quot;IDs&quot;: &quot;ENSG00000254550&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.884455919265747, &quot;y&quot;: -2.1103174686431885, &quot;IDs&quot;: &quot;ENSG00000254579&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.726851463317871, &quot;y&quot;: 3.0513932704925537, &quot;IDs&quot;: &quot;ENSG00000254615&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.726042747497559, &quot;y&quot;: 2.4027063846588135, &quot;IDs&quot;: &quot;ENSG00000254905&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7589833736419678, &quot;y&quot;: 2.7630538940429688, &quot;IDs&quot;: &quot;ENSG00000254916&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.405526161193848, &quot;y&quot;: 2.1545863151550293, &quot;IDs&quot;: &quot;ENSG00000255112&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.426581382751465, &quot;y&quot;: 2.1814284324645996, &quot;IDs&quot;: &quot;ENSG00000255150&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.174983024597168, &quot;y&quot;: -0.6563424468040466, &quot;IDs&quot;: &quot;ENSG00000255154&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.24519419670105, &quot;y&quot;: 0.5594563484191895, &quot;IDs&quot;: &quot;ENSG00000255248&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.44149112701416, &quot;y&quot;: 1.0688596963882446, &quot;IDs&quot;: &quot;ENSG00000255409&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.924635410308838, &quot;y&quot;: -2.0568490028381348, &quot;IDs&quot;: &quot;ENSG00000255496&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.086795806884766, &quot;y&quot;: 1.6550103425979614, &quot;IDs&quot;: &quot;ENSG00000255498&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0047192573547363, &quot;y&quot;: -1.7849125862121582, &quot;IDs&quot;: &quot;ENSG00000255571&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8633339405059814, &quot;y&quot;: 2.346940755844116, &quot;IDs&quot;: &quot;ENSG00000255690&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.289154529571533, &quot;y&quot;: 2.728037118911743, &quot;IDs&quot;: &quot;ENSG00000255836&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.28407096862793, &quot;y&quot;: 2.529120445251465, &quot;IDs&quot;: &quot;ENSG00000255847&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.329590320587158, &quot;y&quot;: 1.7231409549713135, &quot;IDs&quot;: &quot;ENSG00000256128&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.246027946472168, &quot;y&quot;: 3.476646900177002, &quot;IDs&quot;: &quot;ENSG00000256341&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.347736358642578, &quot;y&quot;: -2.565924644470215, &quot;IDs&quot;: &quot;ENSG00000256712&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.349794387817383, &quot;y&quot;: 2.515991687774658, &quot;IDs&quot;: &quot;ENSG00000256843&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.89725923538208, &quot;y&quot;: 0.6021827459335327, &quot;IDs&quot;: &quot;ENSG00000256981&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.424815654754639, &quot;y&quot;: 1.6914743185043335, &quot;IDs&quot;: &quot;ENSG00000257052&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.59385871887207, &quot;y&quot;: 1.868541955947876, &quot;IDs&quot;: &quot;ENSG00000257285&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9499671459198, &quot;y&quot;: -0.37178507447242737, &quot;IDs&quot;: &quot;ENSG00000257432&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2748372554779053, &quot;y&quot;: -0.6524218320846558, &quot;IDs&quot;: &quot;ENSG00000257453&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.154428005218506, &quot;y&quot;: -0.08369521051645279, &quot;IDs&quot;: &quot;ENSG00000257511&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.154362678527832, &quot;y&quot;: 1.5614969730377197, &quot;IDs&quot;: &quot;ENSG00000257548&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.276782512664795, &quot;y&quot;: 0.4859248995780945, &quot;IDs&quot;: &quot;ENSG00000257576&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5340163707733154, &quot;y&quot;: -1.9958075284957886, &quot;IDs&quot;: &quot;ENSG00000257594&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.0518548488616943, &quot;y&quot;: 2.712334632873535, &quot;IDs&quot;: &quot;ENSG00000257599&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8759243488311768, &quot;y&quot;: -0.29425692558288574, &quot;IDs&quot;: &quot;ENSG00000257635&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.1027631759643555, &quot;y&quot;: -0.8599330186843872, &quot;IDs&quot;: &quot;ENSG00000257681&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.68162727355957, &quot;y&quot;: 2.2249279022216797, &quot;IDs&quot;: &quot;ENSG00000257954&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.290571451187134, &quot;y&quot;: 2.160327672958374, &quot;IDs&quot;: &quot;ENSG00000258038&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5743470191955566, &quot;y&quot;: 0.43638402223587036, &quot;IDs&quot;: &quot;ENSG00000258099&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.536643028259277, &quot;y&quot;: -1.7253930568695068, &quot;IDs&quot;: &quot;ENSG00000258400&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.512698173522949, &quot;y&quot;: -1.6496063470840454, &quot;IDs&quot;: &quot;ENSG00000258441&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.719230651855469, &quot;y&quot;: 2.604855537414551, &quot;IDs&quot;: &quot;ENSG00000258469&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9314358234405518, &quot;y&quot;: -2.100832939147949, &quot;IDs&quot;: &quot;ENSG00000258553&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5604050159454346, &quot;y&quot;: 2.9931674003601074, &quot;IDs&quot;: &quot;ENSG00000258599&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.30834898352622986, &quot;y&quot;: 0.7777404189109802, &quot;IDs&quot;: &quot;ENSG00000258655&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.3264163732528687, &quot;y&quot;: 1.3016859292984009, &quot;IDs&quot;: &quot;ENSG00000258725&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.859358787536621, &quot;y&quot;: 3.477759838104248, &quot;IDs&quot;: &quot;ENSG00000258789&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.705514132976532, &quot;y&quot;: 0.06327475607395172, &quot;IDs&quot;: &quot;ENSG00000258813&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.603104591369629, &quot;y&quot;: 0.4921887218952179, &quot;IDs&quot;: &quot;ENSG00000258891&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.715575695037842, &quot;y&quot;: 2.132206439971924, &quot;IDs&quot;: &quot;ENSG00000258957&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8674821853637695, &quot;y&quot;: -1.6394786834716797, &quot;IDs&quot;: &quot;ENSG00000258997&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.4803200960159302, &quot;y&quot;: 2.173534393310547, &quot;IDs&quot;: &quot;ENSG00000259172&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.590884685516357, &quot;y&quot;: 2.7893290519714355, &quot;IDs&quot;: &quot;ENSG00000259200&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.039177894592285, &quot;y&quot;: -1.7576355934143066, &quot;IDs&quot;: &quot;ENSG00000259205&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.520029067993164, &quot;y&quot;: 1.6746553182601929, &quot;IDs&quot;: &quot;ENSG00000259470&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.389453887939453, &quot;y&quot;: -0.9810394048690796, &quot;IDs&quot;: &quot;ENSG00000259540&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.809845447540283, &quot;y&quot;: 2.2912304401397705, &quot;IDs&quot;: &quot;ENSG00000259581&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.185762882232666, &quot;y&quot;: -0.770899772644043, &quot;IDs&quot;: &quot;ENSG00000259623&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.932115077972412, &quot;y&quot;: 2.2473247051239014, &quot;IDs&quot;: &quot;ENSG00000259630&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.574347972869873, &quot;y&quot;: 1.82445228099823, &quot;IDs&quot;: &quot;ENSG00000259706&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.523277759552002, &quot;y&quot;: 1.8833444118499756, &quot;IDs&quot;: &quot;ENSG00000259780&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.600602149963379, &quot;y&quot;: 1.5459215641021729, &quot;IDs&quot;: &quot;ENSG00000259826&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.465721607208252, &quot;y&quot;: -1.464996337890625, &quot;IDs&quot;: &quot;ENSG00000259848&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.6660246849060059, &quot;y&quot;: 2.3699252605438232, &quot;IDs&quot;: &quot;ENSG00000259877&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.5012329816818237, &quot;y&quot;: -2.8882815837860107, &quot;IDs&quot;: &quot;ENSG00000259984&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7483296394348145, &quot;y&quot;: 1.6252784729003906, &quot;IDs&quot;: &quot;ENSG00000259993&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.6991777420043945, &quot;y&quot;: -0.4830842614173889, &quot;IDs&quot;: &quot;ENSG00000259994&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5770509243011475, &quot;y&quot;: -0.03797068074345589, &quot;IDs&quot;: &quot;ENSG00000260060&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2601797580718994, &quot;y&quot;: -0.2853700518608093, &quot;IDs&quot;: &quot;ENSG00000260064&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.814510822296143, &quot;y&quot;: 2.9607696533203125, &quot;IDs&quot;: &quot;ENSG00000260101&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.024669647216797, &quot;y&quot;: 0.8238813877105713, &quot;IDs&quot;: &quot;ENSG00000260105&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.745545387268066, &quot;y&quot;: 0.6237861514091492, &quot;IDs&quot;: &quot;ENSG00000260186&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.094968318939209, &quot;y&quot;: 0.7127119898796082, &quot;IDs&quot;: &quot;ENSG00000260190&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.9070749282836914, &quot;y&quot;: 2.124192953109741, &quot;IDs&quot;: &quot;ENSG00000260211&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.6970646381378174, &quot;y&quot;: -0.568059504032135, &quot;IDs&quot;: &quot;ENSG00000260302&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.1364026069641113, &quot;y&quot;: 3.06689715385437, &quot;IDs&quot;: &quot;ENSG00000260339&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.54306173324585, &quot;y&quot;: 3.284837484359741, &quot;IDs&quot;: &quot;ENSG00000260350&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.321465015411377, &quot;y&quot;: 2.114135265350342, &quot;IDs&quot;: &quot;ENSG00000260493&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.6129605770111084, &quot;y&quot;: 3.2192182540893555, &quot;IDs&quot;: &quot;ENSG00000260526&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.576897144317627, &quot;y&quot;: -1.982288122177124, &quot;IDs&quot;: &quot;ENSG00000260643&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7507009506225586, &quot;y&quot;: 0.6168928146362305, &quot;IDs&quot;: &quot;ENSG00000260686&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.141608715057373, &quot;y&quot;: 2.8000359535217285, &quot;IDs&quot;: &quot;ENSG00000260708&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.0578718185424805, &quot;y&quot;: 1.1509053707122803, &quot;IDs&quot;: &quot;ENSG00000260727&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.124453067779541, &quot;y&quot;: 3.0313360691070557, &quot;IDs&quot;: &quot;ENSG00000260806&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.883990526199341, &quot;y&quot;: 1.0350379943847656, &quot;IDs&quot;: &quot;ENSG00000260862&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.167009115219116, &quot;y&quot;: 0.3930085301399231, &quot;IDs&quot;: &quot;ENSG00000260920&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.436992168426514, &quot;y&quot;: -0.8837510943412781, &quot;IDs&quot;: &quot;ENSG00000260948&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.3174588680267334, &quot;y&quot;: 0.2694198787212372, &quot;IDs&quot;: &quot;ENSG00000260966&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.083308219909668, &quot;y&quot;: 0.7964705228805542, &quot;IDs&quot;: &quot;ENSG00000260997&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.15557599067688, &quot;y&quot;: -1.5245380401611328, &quot;IDs&quot;: &quot;ENSG00000261051&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.797156572341919, &quot;y&quot;: -0.36196422576904297, &quot;IDs&quot;: &quot;ENSG00000261079&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.4048521518707275, &quot;y&quot;: 0.26401764154434204, &quot;IDs&quot;: &quot;ENSG00000261083&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.994391441345215, &quot;y&quot;: 2.1316137313842773, &quot;IDs&quot;: &quot;ENSG00000261117&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9374027252197266, &quot;y&quot;: 1.4518094062805176, &quot;IDs&quot;: &quot;ENSG00000261220&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.175950527191162, &quot;y&quot;: 0.7559010982513428, &quot;IDs&quot;: &quot;ENSG00000261324&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.46823203563690186, &quot;y&quot;: -0.3904126286506653, &quot;IDs&quot;: &quot;ENSG00000261407&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.55442476272583, &quot;y&quot;: 0.3330259919166565, &quot;IDs&quot;: &quot;ENSG00000261409&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8415982723236084, &quot;y&quot;: 2.346902847290039, &quot;IDs&quot;: &quot;ENSG00000261428&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.135103702545166, &quot;y&quot;: 1.7297968864440918, &quot;IDs&quot;: &quot;ENSG00000261441&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.810072898864746, &quot;y&quot;: -0.7594475150108337, &quot;IDs&quot;: &quot;ENSG00000261468&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7406370639801025, &quot;y&quot;: 2.77301287651062, &quot;IDs&quot;: &quot;ENSG00000261526&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.146065711975098, &quot;y&quot;: 1.9552414417266846, &quot;IDs&quot;: &quot;ENSG00000261582&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.1418449878692627, &quot;y&quot;: -1.869946002960205, &quot;IDs&quot;: &quot;ENSG00000261596&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.0301761627197266, &quot;y&quot;: -0.4017714262008667, &quot;IDs&quot;: &quot;ENSG00000261678&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.5601372718811035, &quot;y&quot;: 1.525210976600647, &quot;IDs&quot;: &quot;ENSG00000261845&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.491884231567383, &quot;y&quot;: 1.192053198814392, &quot;IDs&quot;: &quot;ENSG00000261889&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.042855739593506, &quot;y&quot;: 2.66129732131958, &quot;IDs&quot;: &quot;ENSG00000262119&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.0343854427337646, &quot;y&quot;: -1.8408253192901611, &quot;IDs&quot;: &quot;ENSG00000262652&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7336862087249756, &quot;y&quot;: 1.9915775060653687, &quot;IDs&quot;: &quot;ENSG00000263069&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.652578353881836, &quot;y&quot;: -1.5746225118637085, &quot;IDs&quot;: &quot;ENSG00000263366&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.354637145996094, &quot;y&quot;: 3.0117807388305664, &quot;IDs&quot;: &quot;ENSG00000263612&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.629721164703369, &quot;y&quot;: 1.217668056488037, &quot;IDs&quot;: &quot;ENSG00000263750&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.151761531829834, &quot;y&quot;: 1.9415054321289062, &quot;IDs&quot;: &quot;ENSG00000263823&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.078683853149414, &quot;y&quot;: 2.6819684505462646, &quot;IDs&quot;: &quot;ENSG00000263826&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.6877647638320923, &quot;y&quot;: 0.5043969750404358, &quot;IDs&quot;: &quot;ENSG00000264235&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6833302974700928, &quot;y&quot;: -0.4980449974536896, &quot;IDs&quot;: &quot;ENSG00000265345&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.427819728851318, &quot;y&quot;: 2.236135721206665, &quot;IDs&quot;: &quot;ENSG00000265417&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.54984712600708, &quot;y&quot;: -2.64904522895813, &quot;IDs&quot;: &quot;ENSG00000265452&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.99980354309082, &quot;y&quot;: 0.9331262707710266, &quot;IDs&quot;: &quot;ENSG00000265462&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.048811197280884, &quot;y&quot;: -1.1274993419647217, &quot;IDs&quot;: &quot;ENSG00000266357&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.346376895904541, &quot;y&quot;: 2.6574556827545166, &quot;IDs&quot;: &quot;ENSG00000266501&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5524322986602783, &quot;y&quot;: -1.6410256624221802, &quot;IDs&quot;: &quot;ENSG00000266897&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5873990058898926, &quot;y&quot;: -0.5877655148506165, &quot;IDs&quot;: &quot;ENSG00000266910&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2244796752929688, &quot;y&quot;: -1.7617229223251343, &quot;IDs&quot;: &quot;ENSG00000267160&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.6344826221466064, &quot;y&quot;: 1.0848091840744019, &quot;IDs&quot;: &quot;ENSG00000267192&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.7353715896606445, &quot;y&quot;: 2.921992063522339, &quot;IDs&quot;: &quot;ENSG00000267254&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.96663236618042, &quot;y&quot;: 0.4222222566604614, &quot;IDs&quot;: &quot;ENSG00000267328&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2767035961151123, &quot;y&quot;: 1.7417436838150024, &quot;IDs&quot;: &quot;ENSG00000267405&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.33622753620147705, &quot;y&quot;: 0.23232170939445496, &quot;IDs&quot;: &quot;ENSG00000267493&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.920610427856445, &quot;y&quot;: 2.6194605827331543, &quot;IDs&quot;: &quot;ENSG00000267497&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.930286407470703, &quot;y&quot;: -0.45931729674339294, &quot;IDs&quot;: &quot;ENSG00000267504&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.4216902256011963, &quot;y&quot;: -0.27000996470451355, &quot;IDs&quot;: &quot;ENSG00000267519&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.154614806175232, &quot;y&quot;: 1.2858670949935913, &quot;IDs&quot;: &quot;ENSG00000267757&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5228939056396484, &quot;y&quot;: -1.2058452367782593, &quot;IDs&quot;: &quot;ENSG00000267904&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.4285736083984375, &quot;y&quot;: -1.6147100925445557, &quot;IDs&quot;: &quot;ENSG00000268001&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.275384426116943, &quot;y&quot;: 1.8747659921646118, &quot;IDs&quot;: &quot;ENSG00000268095&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.849329471588135, &quot;y&quot;: 2.269775629043579, &quot;IDs&quot;: &quot;ENSG00000268536&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9541025161743164, &quot;y&quot;: 1.6243376731872559, &quot;IDs&quot;: &quot;ENSG00000268670&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.269784927368164, &quot;y&quot;: 0.6636144518852234, &quot;IDs&quot;: &quot;ENSG00000268798&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.3593807220458984, &quot;y&quot;: -0.9575362801551819, &quot;IDs&quot;: &quot;ENSG00000269044&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.035455226898193, &quot;y&quot;: 2.549088954925537, &quot;IDs&quot;: &quot;ENSG00000269296&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.105836391448975, &quot;y&quot;: 0.0033609652891755104, &quot;IDs&quot;: &quot;ENSG00000269343&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.6497838497161865, &quot;y&quot;: 1.5139590501785278, &quot;IDs&quot;: &quot;ENSG00000269486&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.8160374164581299, &quot;y&quot;: 1.7844786643981934, &quot;IDs&quot;: &quot;ENSG00000269559&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.764307975769043, &quot;y&quot;: 1.7192176580429077, &quot;IDs&quot;: &quot;ENSG00000269586&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.242870330810547, &quot;y&quot;: 1.3841198682785034, &quot;IDs&quot;: &quot;ENSG00000269892&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.586598515510559, &quot;y&quot;: 0.5478494763374329, &quot;IDs&quot;: &quot;ENSG00000269902&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.672674179077148, &quot;y&quot;: 2.316323757171631, &quot;IDs&quot;: &quot;ENSG00000269906&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.9993202686309814, &quot;y&quot;: 2.726682186126709, &quot;IDs&quot;: &quot;ENSG00000269939&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.680662155151367, &quot;y&quot;: 1.2810019254684448, &quot;IDs&quot;: &quot;ENSG00000270036&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.19985032081604, &quot;y&quot;: -0.5783754587173462, &quot;IDs&quot;: &quot;ENSG00000270069&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.49819955229759216, &quot;y&quot;: 0.9977607727050781, &quot;IDs&quot;: &quot;ENSG00000270175&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9455654621124268, &quot;y&quot;: -1.1731712818145752, &quot;IDs&quot;: &quot;ENSG00000270190&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.083367824554443, &quot;y&quot;: 2.655301094055176, &quot;IDs&quot;: &quot;ENSG00000270194&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.392546653747559, &quot;y&quot;: 1.843485713005066, &quot;IDs&quot;: &quot;ENSG00000270426&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.7945367693901062, &quot;y&quot;: 1.367979884147644, &quot;IDs&quot;: &quot;ENSG00000270638&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.055281639099121, &quot;y&quot;: 2.829361915588379, &quot;IDs&quot;: &quot;ENSG00000270640&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.081371784210205, &quot;y&quot;: 0.23343978822231293, &quot;IDs&quot;: &quot;ENSG00000270681&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.102576971054077, &quot;y&quot;: -2.259291410446167, &quot;IDs&quot;: &quot;ENSG00000270878&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.186614036560059, &quot;y&quot;: 2.6282129287719727, &quot;IDs&quot;: &quot;ENSG00000271127&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.541548728942871, &quot;y&quot;: 2.2183382511138916, &quot;IDs&quot;: &quot;ENSG00000271147&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.003169298171997, &quot;y&quot;: 1.4265031814575195, &quot;IDs&quot;: &quot;ENSG00000271614&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7518930435180664, &quot;y&quot;: 0.016554752364754677, &quot;IDs&quot;: &quot;ENSG00000271659&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9193668365478516, &quot;y&quot;: -0.15995949506759644, &quot;IDs&quot;: &quot;ENSG00000271784&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.178634762763977, &quot;y&quot;: -0.6010799407958984, &quot;IDs&quot;: &quot;ENSG00000271797&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.277159214019775, &quot;y&quot;: -1.7918262481689453, &quot;IDs&quot;: &quot;ENSG00000271852&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.292923927307129, &quot;y&quot;: 1.0797314643859863, &quot;IDs&quot;: &quot;ENSG00000271858&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.109053611755371, &quot;y&quot;: 2.1848320960998535, &quot;IDs&quot;: &quot;ENSG00000271870&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.223917484283447, &quot;y&quot;: 2.7927870750427246, &quot;IDs&quot;: &quot;ENSG00000272008&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.464663505554199, &quot;y&quot;: 0.9340340495109558, &quot;IDs&quot;: &quot;ENSG00000272056&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.0096678733825684, &quot;y&quot;: -0.47941067814826965, &quot;IDs&quot;: &quot;ENSG00000272072&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.147500514984131, &quot;y&quot;: 0.045635923743247986, &quot;IDs&quot;: &quot;ENSG00000272081&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4660720825195312, &quot;y&quot;: -0.4716317355632782, &quot;IDs&quot;: &quot;ENSG00000272123&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.1838595867156982, &quot;y&quot;: 1.9270472526550293, &quot;IDs&quot;: &quot;ENSG00000272157&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6078341007232666, &quot;y&quot;: 2.6069483757019043, &quot;IDs&quot;: &quot;ENSG00000272159&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.831740379333496, &quot;y&quot;: 1.6289068460464478, &quot;IDs&quot;: &quot;ENSG00000272183&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4353528022766113, &quot;y&quot;: 1.5387566089630127, &quot;IDs&quot;: &quot;ENSG00000272267&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.919493556022644, &quot;y&quot;: -1.0143591165542603, &quot;IDs&quot;: &quot;ENSG00000272335&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.628936767578125, &quot;y&quot;: 3.4139742851257324, &quot;IDs&quot;: &quot;ENSG00000272368&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.642812967300415, &quot;y&quot;: 1.4376288652420044, &quot;IDs&quot;: &quot;ENSG00000272384&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.736211061477661, &quot;y&quot;: 0.19343635439872742, &quot;IDs&quot;: &quot;ENSG00000272468&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.5318491458892822, &quot;y&quot;: -0.006059786304831505, &quot;IDs&quot;: &quot;ENSG00000272518&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2762088775634766, &quot;y&quot;: 3.306373119354248, &quot;IDs&quot;: &quot;ENSG00000272525&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4337992668151855, &quot;y&quot;: 0.8251264095306396, &quot;IDs&quot;: &quot;ENSG00000272549&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.895386815071106, &quot;y&quot;: 0.36633729934692383, &quot;IDs&quot;: &quot;ENSG00000272551&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.098741054534912, &quot;y&quot;: 1.9382977485656738, &quot;IDs&quot;: &quot;ENSG00000272610&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.003307819366455, &quot;y&quot;: 0.5651907324790955, &quot;IDs&quot;: &quot;ENSG00000272630&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7226948738098145, &quot;y&quot;: -1.769693374633789, &quot;IDs&quot;: &quot;ENSG00000272644&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.4831199645996094, &quot;y&quot;: 3.0295817852020264, &quot;IDs&quot;: &quot;ENSG00000272677&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.097912788391113, &quot;y&quot;: 3.5877389907836914, &quot;IDs&quot;: &quot;ENSG00000272686&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.1893625259399414, &quot;y&quot;: 3.2558813095092773, &quot;IDs&quot;: &quot;ENSG00000272716&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.853973865509033, &quot;y&quot;: 2.584117889404297, &quot;IDs&quot;: &quot;ENSG00000272758&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.1631460189819336, &quot;y&quot;: 1.788896918296814, &quot;IDs&quot;: &quot;ENSG00000272812&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.191571235656738, &quot;y&quot;: 1.0476619005203247, &quot;IDs&quot;: &quot;ENSG00000272842&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.33123779296875, &quot;y&quot;: 2.256298065185547, &quot;IDs&quot;: &quot;ENSG00000272906&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9673819541931152, &quot;y&quot;: 2.4735829830169678, &quot;IDs&quot;: &quot;ENSG00000272910&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.941922187805176, &quot;y&quot;: -0.7726269364356995, &quot;IDs&quot;: &quot;ENSG00000272936&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.837374687194824, &quot;y&quot;: -0.03286352381110191, &quot;IDs&quot;: &quot;ENSG00000272994&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.105466842651367, &quot;y&quot;: 2.9608101844787598, &quot;IDs&quot;: &quot;ENSG00000273063&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.4129252433776855, &quot;y&quot;: 1.5584474802017212, &quot;IDs&quot;: &quot;ENSG00000273066&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.61165189743042, &quot;y&quot;: 2.5330233573913574, &quot;IDs&quot;: &quot;ENSG00000273084&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.685187578201294, &quot;y&quot;: 0.9424660205841064, &quot;IDs&quot;: &quot;ENSG00000273106&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.9301818609237671, &quot;y&quot;: 0.5547892451286316, &quot;IDs&quot;: &quot;ENSG00000273204&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8901662826538086, &quot;y&quot;: -0.47599223256111145, &quot;IDs&quot;: &quot;ENSG00000273319&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.808851480484009, &quot;y&quot;: 2.5724501609802246, &quot;IDs&quot;: &quot;ENSG00000273320&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.040858268737793, &quot;y&quot;: 0.35488957166671753, &quot;IDs&quot;: &quot;ENSG00000273328&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.639104843139648, &quot;y&quot;: 3.5823404788970947, &quot;IDs&quot;: &quot;ENSG00000273355&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.5067219734191895, &quot;y&quot;: 0.8475475907325745, &quot;IDs&quot;: &quot;ENSG00000273356&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.274707555770874, &quot;y&quot;: 1.100804328918457, &quot;IDs&quot;: &quot;ENSG00000273381&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.3833590745925903, &quot;y&quot;: 0.7927644848823547, &quot;IDs&quot;: &quot;ENSG00000273387&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.227025508880615, &quot;y&quot;: 2.5003883838653564, &quot;IDs&quot;: &quot;ENSG00000273394&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.134082317352295, &quot;y&quot;: 0.4139299988746643, &quot;IDs&quot;: &quot;ENSG00000273442&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0419864654541016, &quot;y&quot;: -2.8140721321105957, &quot;IDs&quot;: &quot;ENSG00000273448&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.6216673851013184, &quot;y&quot;: 0.8299849033355713, &quot;IDs&quot;: &quot;ENSG00000273449&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.819026947021484, &quot;y&quot;: 0.5733416676521301, &quot;IDs&quot;: &quot;ENSG00000273485&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.635207176208496, &quot;y&quot;: 1.8499151468276978, &quot;IDs&quot;: &quot;ENSG00000273542&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7154858112335205, &quot;y&quot;: -1.7985565662384033, &quot;IDs&quot;: &quot;ENSG00000273568&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.168522834777832, &quot;y&quot;: 0.09200616925954819, &quot;IDs&quot;: &quot;ENSG00000273669&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9482529163360596, &quot;y&quot;: 1.1043962240219116, &quot;IDs&quot;: &quot;ENSG00000273680&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.795932292938232, &quot;y&quot;: 3.3741815090179443, &quot;IDs&quot;: &quot;ENSG00000273711&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.35319447517395, &quot;y&quot;: 1.6855297088623047, &quot;IDs&quot;: &quot;ENSG00000273729&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.0561017990112305, &quot;y&quot;: 1.984175443649292, &quot;IDs&quot;: &quot;ENSG00000273742&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.302498817443848, &quot;y&quot;: 2.8255302906036377, &quot;IDs&quot;: &quot;ENSG00000273797&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.105310440063477, &quot;y&quot;: 1.8718851804733276, &quot;IDs&quot;: &quot;ENSG00000273820&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.796051263809204, &quot;y&quot;: 3.0026583671569824, &quot;IDs&quot;: &quot;ENSG00000273888&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.799060344696045, &quot;y&quot;: 1.9794162511825562, &quot;IDs&quot;: &quot;ENSG00000273893&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.936889171600342, &quot;y&quot;: 0.42917943000793457, &quot;IDs&quot;: &quot;ENSG00000273989&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.801175117492676, &quot;y&quot;: 0.33589059114456177, &quot;IDs&quot;: &quot;ENSG00000274015&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.185976982116699, &quot;y&quot;: 1.711908221244812, &quot;IDs&quot;: &quot;ENSG00000274021&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.251211643218994, &quot;y&quot;: 1.7328104972839355, &quot;IDs&quot;: &quot;ENSG00000274104&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.739347219467163, &quot;y&quot;: -1.0274693965911865, &quot;IDs&quot;: &quot;ENSG00000274105&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.0275051593780518, &quot;y&quot;: 2.945356607437134, &quot;IDs&quot;: &quot;ENSG00000274184&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.375308036804199, &quot;y&quot;: 1.7071077823638916, &quot;IDs&quot;: &quot;ENSG00000274267&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.16231925785541534, &quot;y&quot;: 0.5296133756637573, &quot;IDs&quot;: &quot;ENSG00000274286&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.887448787689209, &quot;y&quot;: 2.047045946121216, &quot;IDs&quot;: &quot;ENSG00000274290&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.5421580076217651, &quot;y&quot;: 1.281381607055664, &quot;IDs&quot;: &quot;ENSG00000274425&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.608271598815918, &quot;y&quot;: 1.5110912322998047, &quot;IDs&quot;: &quot;ENSG00000274649&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.407857418060303, &quot;y&quot;: 3.6003429889678955, &quot;IDs&quot;: &quot;ENSG00000274712&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.598525047302246, &quot;y&quot;: 3.460334539413452, &quot;IDs&quot;: &quot;ENSG00000274828&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.1020538806915283, &quot;y&quot;: 0.9858556389808655, &quot;IDs&quot;: &quot;ENSG00000274911&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.259537220001221, &quot;y&quot;: 1.9018816947937012, &quot;IDs&quot;: &quot;ENSG00000274943&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.8794569969177246, &quot;y&quot;: -0.1438506841659546, &quot;IDs&quot;: &quot;ENSG00000274997&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8962252140045166, &quot;y&quot;: -2.897778272628784, &quot;IDs&quot;: &quot;ENSG00000275029&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.498868465423584, &quot;y&quot;: 3.623378038406372, &quot;IDs&quot;: &quot;ENSG00000275055&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8035171031951904, &quot;y&quot;: -0.0007392765255644917, &quot;IDs&quot;: &quot;ENSG00000275084&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.8374528884887695, &quot;y&quot;: 0.303393691778183, &quot;IDs&quot;: &quot;ENSG00000275092&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.203721761703491, &quot;y&quot;: -2.7049198150634766, &quot;IDs&quot;: &quot;ENSG00000275111&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7479782104492188, &quot;y&quot;: -1.842715859413147, &quot;IDs&quot;: &quot;ENSG00000275120&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.650214910507202, &quot;y&quot;: -0.6301108598709106, &quot;IDs&quot;: &quot;ENSG00000275221&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.703580379486084, &quot;y&quot;: 0.5366678833961487, &quot;IDs&quot;: &quot;ENSG00000275322&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.513244867324829, &quot;y&quot;: 1.1131864786148071, &quot;IDs&quot;: &quot;ENSG00000275454&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.194287061691284, &quot;y&quot;: 2.5655460357666016, &quot;IDs&quot;: &quot;ENSG00000275693&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.9413859844207764, &quot;y&quot;: 2.711709976196289, &quot;IDs&quot;: &quot;ENSG00000275708&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.218061447143555, &quot;y&quot;: -0.1196606308221817, &quot;IDs&quot;: &quot;ENSG00000275714&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.1308140754699707, &quot;y&quot;: -1.8347206115722656, &quot;IDs&quot;: &quot;ENSG00000275854&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9477686882019043, &quot;y&quot;: 1.0790072679519653, &quot;IDs&quot;: &quot;ENSG00000275859&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.167747974395752, &quot;y&quot;: 2.421703577041626, &quot;IDs&quot;: &quot;ENSG00000275894&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.875882148742676, &quot;y&quot;: 2.654719829559326, &quot;IDs&quot;: &quot;ENSG00000275896&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.101850509643555, &quot;y&quot;: 2.7486650943756104, &quot;IDs&quot;: &quot;ENSG00000276058&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.935902118682861, &quot;y&quot;: 2.5326385498046875, &quot;IDs&quot;: &quot;ENSG00000276180&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.655349016189575, &quot;y&quot;: 1.2708851099014282, &quot;IDs&quot;: &quot;ENSG00000276259&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.319856882095337, &quot;y&quot;: 2.855940580368042, &quot;IDs&quot;: &quot;ENSG00000276524&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.9908366203308105, &quot;y&quot;: 2.0137581825256348, &quot;IDs&quot;: &quot;ENSG00000276564&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.555820107460022, &quot;y&quot;: 1.1208239793777466, &quot;IDs&quot;: &quot;ENSG00000276573&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.839948654174805, &quot;y&quot;: 1.7914544343948364, &quot;IDs&quot;: &quot;ENSG00000276603&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2131145000457764, &quot;y&quot;: -2.559338092803955, &quot;IDs&quot;: &quot;ENSG00000276728&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.120730876922607, &quot;y&quot;: 0.36108720302581787, &quot;IDs&quot;: &quot;ENSG00000276786&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.557267189025879, &quot;y&quot;: 0.9012914299964905, &quot;IDs&quot;: &quot;ENSG00000276853&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.7325514554977417, &quot;y&quot;: 1.7619762420654297, &quot;IDs&quot;: &quot;ENSG00000276900&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.956864833831787, &quot;y&quot;: 1.022873044013977, &quot;IDs&quot;: &quot;ENSG00000276966&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.477209568023682, &quot;y&quot;: 0.45833632349967957, &quot;IDs&quot;: &quot;ENSG00000277157&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0915603637695312, &quot;y&quot;: -3.0113751888275146, &quot;IDs&quot;: &quot;ENSG00000277170&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.2132577896118164, &quot;y&quot;: -1.2388142347335815, &quot;IDs&quot;: &quot;ENSG00000277173&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.552785634994507, &quot;y&quot;: 0.9567446708679199, &quot;IDs&quot;: &quot;ENSG00000277224&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.4383926391601562, &quot;y&quot;: 1.127087950706482, &quot;IDs&quot;: &quot;ENSG00000277342&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0566625595092773, &quot;y&quot;: -2.935948133468628, &quot;IDs&quot;: &quot;ENSG00000277352&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4823195934295654, &quot;y&quot;: -0.829683244228363, &quot;IDs&quot;: &quot;ENSG00000277367&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.9119246006011963, &quot;y&quot;: 0.5142998099327087, &quot;IDs&quot;: &quot;ENSG00000277423&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.332211494445801, &quot;y&quot;: 2.5231966972351074, &quot;IDs&quot;: &quot;ENSG00000277462&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.647184371948242, &quot;y&quot;: 0.6386734247207642, &quot;IDs&quot;: &quot;ENSG00000277586&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.9329705238342285, &quot;y&quot;: 2.254485607147217, &quot;IDs&quot;: &quot;ENSG00000277589&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5180490016937256, &quot;y&quot;: 3.333789110183716, &quot;IDs&quot;: &quot;ENSG00000277693&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.948101282119751, &quot;y&quot;: -0.49396079778671265, &quot;IDs&quot;: &quot;ENSG00000277738&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.603700637817383, &quot;y&quot;: -0.7463223934173584, &quot;IDs&quot;: &quot;ENSG00000277945&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.610457897186279, &quot;y&quot;: 3.2414886951446533, &quot;IDs&quot;: &quot;ENSG00000278022&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7242214679718018, &quot;y&quot;: 1.9528485536575317, &quot;IDs&quot;: &quot;ENSG00000278058&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.3664402961730957, &quot;y&quot;: -0.1489671915769577, &quot;IDs&quot;: &quot;ENSG00000278156&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.719954490661621, &quot;y&quot;: 0.12903909385204315, &quot;IDs&quot;: &quot;ENSG00000278384&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.0052995681762695, &quot;y&quot;: -0.12228380888700485, &quot;IDs&quot;: &quot;ENSG00000278576&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.8890891075134277, &quot;y&quot;: 1.7234454154968262, &quot;IDs&quot;: &quot;ENSG00000278743&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.098812580108643, &quot;y&quot;: 1.8896688222885132, &quot;IDs&quot;: &quot;ENSG00000278828&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.475965976715088, &quot;y&quot;: -0.5468308329582214, &quot;IDs&quot;: &quot;ENSG00000278889&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2859227657318115, &quot;y&quot;: 1.82851243019104, &quot;IDs&quot;: &quot;ENSG00000279048&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7838194370269775, &quot;y&quot;: -2.4636666774749756, &quot;IDs&quot;: &quot;ENSG00000279089&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.779731750488281, &quot;y&quot;: 2.523937940597534, &quot;IDs&quot;: &quot;ENSG00000279092&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.313863515853882, &quot;y&quot;: -4.313487529754639, &quot;IDs&quot;: &quot;ENSG00000279098&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.1053266525268555, &quot;y&quot;: 1.1433796882629395, &quot;IDs&quot;: &quot;ENSG00000279122&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.2184667587280273, &quot;y&quot;: 0.7314502596855164, &quot;IDs&quot;: &quot;ENSG00000279133&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.4774067401885986, &quot;y&quot;: -0.4277520179748535, &quot;IDs&quot;: &quot;ENSG00000279138&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.136854410171509, &quot;y&quot;: 1.2044497728347778, &quot;IDs&quot;: &quot;ENSG00000279145&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9110078811645508, &quot;y&quot;: -0.40507712960243225, &quot;IDs&quot;: &quot;ENSG00000279164&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.018884658813477, &quot;y&quot;: 1.99250328540802, &quot;IDs&quot;: &quot;ENSG00000279253&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.521920084953308, &quot;y&quot;: 1.6126309633255005, &quot;IDs&quot;: &quot;ENSG00000279349&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.4875099658966064, &quot;y&quot;: -2.4537947177886963, &quot;IDs&quot;: &quot;ENSG00000279432&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.798229694366455, &quot;y&quot;: -3.6045966148376465, &quot;IDs&quot;: &quot;ENSG00000279481&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6467032432556152, &quot;y&quot;: -1.130127191543579, &quot;IDs&quot;: &quot;ENSG00000279528&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.250627040863037, &quot;y&quot;: 0.43172314763069153, &quot;IDs&quot;: &quot;ENSG00000279568&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.820589065551758, &quot;y&quot;: 1.7420107126235962, &quot;IDs&quot;: &quot;ENSG00000279583&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.749992847442627, &quot;y&quot;: 0.7385558485984802, &quot;IDs&quot;: &quot;ENSG00000279584&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.465942621231079, &quot;y&quot;: -0.8456456661224365, &quot;IDs&quot;: &quot;ENSG00000279608&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.520847797393799, &quot;y&quot;: 2.8152143955230713, &quot;IDs&quot;: &quot;ENSG00000279613&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.021994590759277, &quot;y&quot;: 1.0247688293457031, &quot;IDs&quot;: &quot;ENSG00000279637&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.2091755867004395, &quot;y&quot;: -0.738872766494751, &quot;IDs&quot;: &quot;ENSG00000279649&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.5869688987731934, &quot;y&quot;: 1.5465011596679688, &quot;IDs&quot;: &quot;ENSG00000279667&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.116663932800293, &quot;y&quot;: 2.3145804405212402, &quot;IDs&quot;: &quot;ENSG00000279685&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.576790809631348, &quot;y&quot;: 1.284669041633606, &quot;IDs&quot;: &quot;ENSG00000279691&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.1742417812347412, &quot;y&quot;: 0.012228746898472309, &quot;IDs&quot;: &quot;ENSG00000279696&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.322943925857544, &quot;y&quot;: -0.8384220004081726, &quot;IDs&quot;: &quot;ENSG00000279738&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.480311870574951, &quot;y&quot;: 0.08254791796207428, &quot;IDs&quot;: &quot;ENSG00000279861&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.0892374515533447, &quot;y&quot;: 3.065610408782959, &quot;IDs&quot;: &quot;ENSG00000279865&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7023093700408936, &quot;y&quot;: 0.7399522066116333, &quot;IDs&quot;: &quot;ENSG00000279962&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.540287494659424, &quot;y&quot;: 0.9213867783546448, &quot;IDs&quot;: &quot;ENSG00000280010&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6860132217407227, &quot;y&quot;: -1.2899396419525146, &quot;IDs&quot;: &quot;ENSG00000280046&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.3297860622406006, &quot;y&quot;: 0.6503226161003113, &quot;IDs&quot;: &quot;ENSG00000280219&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.165444374084473, &quot;y&quot;: 2.3529932498931885, &quot;IDs&quot;: &quot;ENSG00000280231&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.028714656829834, &quot;y&quot;: 1.378556728363037, &quot;IDs&quot;: &quot;ENSG00000280287&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.629580020904541, &quot;y&quot;: 1.6662977933883667, &quot;IDs&quot;: &quot;ENSG00000280453&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.4977495670318604, &quot;y&quot;: -2.696927547454834, &quot;IDs&quot;: &quot;ENSG00000281026&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.9559738636016846, &quot;y&quot;: -1.7382835149765015, &quot;IDs&quot;: &quot;ENSG00000281347&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.779782295227051, &quot;y&quot;: 2.210766077041626, &quot;IDs&quot;: &quot;ENSG00000281756&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.629933834075928, &quot;y&quot;: 2.5758097171783447, &quot;IDs&quot;: &quot;ENSG00000281912&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.0725998878479, &quot;y&quot;: 1.7513725757598877, &quot;IDs&quot;: &quot;ENSG00000282100&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.644698143005371, &quot;y&quot;: 2.659041166305542, &quot;IDs&quot;: &quot;ENSG00000282164&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.290180206298828, &quot;y&quot;: 0.21108198165893555, &quot;IDs&quot;: &quot;ENSG00000282988&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.793637752532959, &quot;y&quot;: 0.8546633720397949, &quot;IDs&quot;: &quot;ENSG00000283122&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.0755767822265625, &quot;y&quot;: 1.9354900121688843, &quot;IDs&quot;: &quot;ENSG00000283204&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.1433916091918945, &quot;y&quot;: 1.9618228673934937, &quot;IDs&quot;: &quot;ENSG00000283566&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.336941719055176, &quot;y&quot;: 3.474761724472046, &quot;IDs&quot;: &quot;ENSG00000283696&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.5632050037384033, &quot;y&quot;: 0.3461199700832367, &quot;IDs&quot;: &quot;ENSG00000283740&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.988044261932373, &quot;y&quot;: 0.1780664324760437, &quot;IDs&quot;: &quot;ENSG00000284196&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.316636085510254, &quot;y&quot;: -1.7491434812545776, &quot;IDs&quot;: &quot;ENSG00000284697&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.5013108253479, &quot;y&quot;: 1.3319528102874756, &quot;IDs&quot;: &quot;ENSG00000284753&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.546688079833984, &quot;y&quot;: -0.5463554263114929, &quot;IDs&quot;: &quot;ENSG00000284834&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7511353492736816, &quot;y&quot;: -0.17986378073692322, &quot;IDs&quot;: &quot;ENSG00000284930&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9833987951278687, &quot;y&quot;: 2.472935676574707, &quot;IDs&quot;: &quot;ENSG00000285278&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.253266334533691, &quot;y&quot;: 3.7784392833709717, &quot;IDs&quot;: &quot;ENSG00000285410&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.291259288787842, &quot;y&quot;: 0.10318110883235931, &quot;IDs&quot;: &quot;ENSG00000285531&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.981581687927246, &quot;y&quot;: 2.1698946952819824, &quot;IDs&quot;: &quot;ENSG00000285641&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.4825026988983154, &quot;y&quot;: -1.059874415397644, &quot;IDs&quot;: &quot;ENSG00000285722&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.3665475845336914, &quot;y&quot;: 1.5832725763320923, &quot;IDs&quot;: &quot;ENSG00000285976&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.415833055973053, &quot;y&quot;: -6.8513898849487305, &quot;IDs&quot;: &quot;ENSG00000176700&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -6.059534072875977, &quot;y&quot;: 0.25025275349617004, &quot;IDs&quot;: &quot;ENSG00000189014&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2.026388645172119, &quot;y&quot;: -5.355581760406494, &quot;IDs&quot;: &quot;ENSG00000258487&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.35430869460105896, &quot;y&quot;: -0.11308134347200394, &quot;IDs&quot;: &quot;ENSG00000020633&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.6663260459899902, &quot;y&quot;: 0.2908521890640259, &quot;IDs&quot;: &quot;ENSG00000049130&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.2165602445602417, &quot;y&quot;: -0.1300073117017746, &quot;IDs&quot;: &quot;ENSG00000056558&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.5559610724449158, &quot;y&quot;: -0.09996883571147919, &quot;IDs&quot;: &quot;ENSG00000100290&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.3175933361053467, &quot;y&quot;: -0.11782906204462051, &quot;IDs&quot;: &quot;ENSG00000104856&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.8625196218490601, &quot;y&quot;: -0.04286746308207512, &quot;IDs&quot;: &quot;ENSG00000111252&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.7061740159988403, &quot;y&quot;: 0.19855011999607086, &quot;IDs&quot;: &quot;ENSG00000112149&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.06326837837696075, &quot;y&quot;: -0.1606464982032776, &quot;IDs&quot;: &quot;ENSG00000115850&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.527203917503357, &quot;y&quot;: -0.10134267807006836, &quot;IDs&quot;: &quot;ENSG00000116741&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.9228420257568359, &quot;y&quot;: 0.0762275978922844, &quot;IDs&quot;: &quot;ENSG00000117525&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.37190309166908264, &quot;y&quot;: 0.25408726930618286, &quot;IDs&quot;: &quot;ENSG00000134070&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.3062956631183624, &quot;y&quot;: 0.7894323468208313, &quot;IDs&quot;: &quot;ENSG00000135604&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.5856168270111084, &quot;y&quot;: -1.0303574800491333, &quot;IDs&quot;: &quot;ENSG00000138311&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.5507818460464478, &quot;y&quot;: -1.5427390336990356, &quot;IDs&quot;: &quot;ENSG00000143878&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.2736059427261353, &quot;y&quot;: -0.10008905082941055, &quot;IDs&quot;: &quot;ENSG00000146232&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.9612470865249634, &quot;y&quot;: 0.3786469101905823, &quot;IDs&quot;: &quot;ENSG00000155090&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.12830063700675964, &quot;y&quot;: 0.2722005546092987, &quot;IDs&quot;: &quot;ENSG00000161940&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.8551293611526489, &quot;y&quot;: 0.09141986072063446, &quot;IDs&quot;: &quot;ENSG00000162692&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.9711740612983704, &quot;y&quot;: -0.010053707286715508, &quot;IDs&quot;: &quot;ENSG00000163219&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.79115229845047, &quot;y&quot;: -0.2854057252407074, &quot;IDs&quot;: &quot;ENSG00000163449&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2.093273639678955, &quot;y&quot;: -1.7263500690460205, &quot;IDs&quot;: &quot;ENSG00000163982&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.9751461744308472, &quot;y&quot;: 0.07279135286808014, &quot;IDs&quot;: &quot;ENSG00000164400&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.6969050765037537, &quot;y&quot;: -0.24911482632160187, &quot;IDs&quot;: &quot;ENSG00000164853&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.5404366254806519, &quot;y&quot;: 0.028016678988933563, &quot;IDs&quot;: &quot;ENSG00000165621&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.892036497592926, &quot;y&quot;: 0.15496762096881866, &quot;IDs&quot;: &quot;ENSG00000166592&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.304774522781372, &quot;y&quot;: -0.3692988157272339, &quot;IDs&quot;: &quot;ENSG00000176907&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.553463339805603, &quot;y&quot;: -0.7987635135650635, &quot;IDs&quot;: &quot;ENSG00000177103&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.8176192045211792, &quot;y&quot;: -1.3009997606277466, &quot;IDs&quot;: &quot;ENSG00000182218&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.94003963470459, &quot;y&quot;: 0.5440014004707336, &quot;IDs&quot;: &quot;ENSG00000184012&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.2555750012397766, &quot;y&quot;: 0.3140575587749481, &quot;IDs&quot;: &quot;ENSG00000188910&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.5944371223449707, &quot;y&quot;: -1.5955392122268677, &quot;IDs&quot;: &quot;ENSG00000203709&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.673356831073761, &quot;y&quot;: -1.066854476928711, &quot;IDs&quot;: &quot;ENSG00000224116&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.024788498878479, &quot;y&quot;: -1.5985435247421265, &quot;IDs&quot;: &quot;ENSG00000224635&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.4659067392349243, &quot;y&quot;: -0.41257786750793457, &quot;IDs&quot;: &quot;ENSG00000226828&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.08285866677761078, &quot;y&quot;: 0.8758058547973633, &quot;IDs&quot;: &quot;ENSG00000226833&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.8852612376213074, &quot;y&quot;: -0.3319861888885498, &quot;IDs&quot;: &quot;ENSG00000230359&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.12433727085590363, &quot;y&quot;: -0.4715458154678345, &quot;IDs&quot;: &quot;ENSG00000240405&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.3296797275543213, &quot;y&quot;: -0.33684980869293213, &quot;IDs&quot;: &quot;ENSG00000240859&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.34164589643478394, &quot;y&quot;: -0.17108073830604553, &quot;IDs&quot;: &quot;ENSG00000245954&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.498735785484314, &quot;y&quot;: -0.3014550507068634, &quot;IDs&quot;: &quot;ENSG00000247993&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.6517810225486755, &quot;y&quot;: -0.978960394859314, &quot;IDs&quot;: &quot;ENSG00000248724&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.047756128013134, &quot;y&quot;: -0.0072624655440449715, &quot;IDs&quot;: &quot;ENSG00000253632&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.4182571172714233, &quot;y&quot;: -0.9083020091056824, &quot;IDs&quot;: &quot;ENSG00000254791&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.2951432466506958, &quot;y&quot;: 0.2608645558357239, &quot;IDs&quot;: &quot;ENSG00000261618&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.3135336637496948, &quot;y&quot;: -0.14858262240886688, &quot;IDs&quot;: &quot;ENSG00000271856&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.4187295138835907, &quot;y&quot;: -1.1168816089630127, &quot;IDs&quot;: &quot;ENSG00000273056&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.45381590723991394, &quot;y&quot;: 0.371565043926239, &quot;IDs&quot;: &quot;ENSG00000273143&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.7394276857376099, &quot;y&quot;: -1.1825569868087769, &quot;IDs&quot;: &quot;ENSG00000273489&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.9363543391227722, &quot;y&quot;: -0.40912529826164246, &quot;IDs&quot;: &quot;ENSG00000273703&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.6601547598838806, &quot;y&quot;: -0.14210982620716095, &quot;IDs&quot;: &quot;ENSG00000275401&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.4788048267364502, &quot;y&quot;: -0.6667622327804565, &quot;IDs&quot;: &quot;ENSG00000277013&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.7121289372444153, &quot;y&quot;: -0.039906639605760574, &quot;IDs&quot;: &quot;ENSG00000283765&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.26482662558555603, &quot;y&quot;: 0.1321103423833847, &quot;IDs&quot;: &quot;ENSG00000284391&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1.3310728073120117, &quot;y&quot;: -0.09277388453483582, &quot;IDs&quot;: &quot;ENSG00000285844&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.8365181684494019, &quot;y&quot;: -4.298150539398193, &quot;IDs&quot;: &quot;ENSG00000083814&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.1483677178621292, &quot;y&quot;: -5.770345687866211, &quot;IDs&quot;: &quot;ENSG00000117616&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.732847690582275, &quot;y&quot;: 1.7805185317993164, &quot;IDs&quot;: &quot;ENSG00000131503&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.7721272706985474, &quot;y&quot;: -3.688941478729248, &quot;IDs&quot;: &quot;ENSG00000134285&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.38802170753479, &quot;y&quot;: -2.8767058849334717, &quot;IDs&quot;: &quot;ENSG00000137185&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.313051700592041, &quot;y&quot;: -4.042067050933838, &quot;IDs&quot;: &quot;ENSG00000160961&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.0340778827667236, &quot;y&quot;: -2.5505387783050537, &quot;IDs&quot;: &quot;ENSG00000169282&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.0997817516326904, &quot;y&quot;: -1.6383696794509888, &quot;IDs&quot;: &quot;ENSG00000198797&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.783416509628296, &quot;y&quot;: -2.007434368133545, &quot;IDs&quot;: &quot;ENSG00000201208&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.8225862979888916, &quot;y&quot;: -4.111698150634766, &quot;IDs&quot;: &quot;ENSG00000204361&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6959359645843506, &quot;y&quot;: -3.0874717235565186, &quot;IDs&quot;: &quot;ENSG00000207697&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.6609762907028198, &quot;y&quot;: -4.023468494415283, &quot;IDs&quot;: &quot;ENSG00000216809&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.6999249458312988, &quot;y&quot;: -4.071661472320557, &quot;IDs&quot;: &quot;ENSG00000221184&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.532149076461792, &quot;y&quot;: -3.32297420501709, &quot;IDs&quot;: &quot;ENSG00000225328&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.411220073699951, &quot;y&quot;: -1.9836167097091675, &quot;IDs&quot;: &quot;ENSG00000229056&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.1907057762146, &quot;y&quot;: -3.9301679134368896, &quot;IDs&quot;: &quot;ENSG00000231969&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.6327176094055176, &quot;y&quot;: 1.2297413349151611, &quot;IDs&quot;: &quot;ENSG00000248643&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.28285026550293, &quot;y&quot;: -1.853356957435608, &quot;IDs&quot;: &quot;ENSG00000251273&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2.4773778915405273, &quot;y&quot;: -5.4519500732421875, &quot;IDs&quot;: &quot;ENSG00000251458&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -0.6638654470443726, &quot;y&quot;: -4.488736152648926, &quot;IDs&quot;: &quot;ENSG00000252481&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.200470447540283, &quot;y&quot;: -4.286965847015381, &quot;IDs&quot;: &quot;ENSG00000255197&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0.09577716886997223, &quot;y&quot;: -6.03829288482666, &quot;IDs&quot;: &quot;ENSG00000258559&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.058248996734619, &quot;y&quot;: -3.845452308654785, &quot;IDs&quot;: &quot;ENSG00000258791&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -4.004136085510254, &quot;y&quot;: -3.9747262001037598, &quot;IDs&quot;: &quot;ENSG00000259033&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.7689831256866455, &quot;y&quot;: -0.28037509322166443, &quot;IDs&quot;: &quot;ENSG00000261732&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.181078553199768, &quot;y&quot;: -4.320933818817139, &quot;IDs&quot;: &quot;ENSG00000263126&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.9470069408416748, &quot;y&quot;: -3.108535051345825, &quot;IDs&quot;: &quot;ENSG00000266589&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.21240496635437, &quot;y&quot;: -2.4876482486724854, &quot;IDs&quot;: &quot;ENSG00000268279&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -3.7937417030334473, &quot;y&quot;: -0.588874876499176, &quot;IDs&quot;: &quot;ENSG00000272573&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -1.0172834396362305, &quot;y&quot;: -4.398834705352783, &quot;IDs&quot;: &quot;ENSG00000276248&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -2.874197006225586, &quot;y&quot;: -2.7839109897613525, &quot;IDs&quot;: &quot;ENSG00000285190&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4.562534809112549, &quot;y&quot;: -2.514411211013794, &quot;IDs&quot;: &quot;ENSG00000164167&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: -5.208132743835449, &quot;y&quot;: 2.1640024185180664, &quot;IDs&quot;: &quot;ENSG00000165914&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#ffd500&quot;, &quot;name&quot;: &quot;cluster_01&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 2.1821887493133545, &quot;y&quot;: -0.5274602174758911, &quot;IDs&quot;: &quot;ENSG00000006210&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.5581269860267639, &quot;y&quot;: -1.1039117574691772, &quot;IDs&quot;: &quot;ENSG00000019549&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.6582058668136597, &quot;y&quot;: -0.6168121695518494, &quot;IDs&quot;: &quot;ENSG00000033100&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.6429535150527954, &quot;y&quot;: -1.3190091848373413, &quot;IDs&quot;: &quot;ENSG00000083812&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.1095585823059082, &quot;y&quot;: -0.7759566307067871, &quot;IDs&quot;: &quot;ENSG00000091010&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.3886559009552002, &quot;y&quot;: -1.6076310873031616, &quot;IDs&quot;: &quot;ENSG00000100483&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.3366987705230713, &quot;y&quot;: -0.4151216149330139, &quot;IDs&quot;: &quot;ENSG00000102096&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.8805712461471558, &quot;y&quot;: -1.469433069229126, &quot;IDs&quot;: &quot;ENSG00000111696&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.317557454109192, &quot;y&quot;: -1.2729500532150269, &quot;IDs&quot;: &quot;ENSG00000120942&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.5238136053085327, &quot;y&quot;: -1.5570276975631714, &quot;IDs&quot;: &quot;ENSG00000130066&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.311320424079895, &quot;y&quot;: -1.4075727462768555, &quot;IDs&quot;: &quot;ENSG00000132464&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -0.17429286241531372, &quot;y&quot;: -0.6467577219009399, &quot;IDs&quot;: &quot;ENSG00000135373&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.2834235429763794, &quot;y&quot;: 1.6082204580307007, &quot;IDs&quot;: &quot;ENSG00000135913&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.8067208528518677, &quot;y&quot;: -1.6995267868041992, &quot;IDs&quot;: &quot;ENSG00000136869&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.7107501029968262, &quot;y&quot;: -0.7130914926528931, &quot;IDs&quot;: &quot;ENSG00000140941&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.470523715019226, &quot;y&quot;: -1.2660033702850342, &quot;IDs&quot;: &quot;ENSG00000145817&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -0.7941107153892517, &quot;y&quot;: -0.39316385984420776, &quot;IDs&quot;: &quot;ENSG00000146242&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.791599452495575, &quot;y&quot;: -1.6772571802139282, &quot;IDs&quot;: &quot;ENSG00000149054&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.2197240591049194, &quot;y&quot;: -1.058669090270996, &quot;IDs&quot;: &quot;ENSG00000151952&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.5473662614822388, &quot;y&quot;: -1.4618911743164062, &quot;IDs&quot;: &quot;ENSG00000162695&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.3391984701156616, &quot;y&quot;: 0.026053978130221367, &quot;IDs&quot;: &quot;ENSG00000162783&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.487058162689209, &quot;y&quot;: -1.8029810190200806, &quot;IDs&quot;: &quot;ENSG00000165794&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.8766381740570068, &quot;y&quot;: -1.6269758939743042, &quot;IDs&quot;: &quot;ENSG00000175841&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1707077026367188, &quot;y&quot;: -0.2447940856218338, &quot;IDs&quot;: &quot;ENSG00000175857&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.0039992332458496, &quot;y&quot;: -0.5633614659309387, &quot;IDs&quot;: &quot;ENSG00000179930&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.098085641860962, &quot;y&quot;: -0.6911394596099854, &quot;IDs&quot;: &quot;ENSG00000187626&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.2453635931015015, &quot;y&quot;: -1.6202335357666016, &quot;IDs&quot;: &quot;ENSG00000196378&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -0.38995450735092163, &quot;y&quot;: -0.6415327191352844, &quot;IDs&quot;: &quot;ENSG00000197044&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.2166657447814941, &quot;y&quot;: -1.1177663803100586, &quot;IDs&quot;: &quot;ENSG00000197208&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.07578444480896, &quot;y&quot;: -1.2149277925491333, &quot;IDs&quot;: &quot;ENSG00000198018&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8338710069656372, &quot;y&quot;: -2.3191535472869873, &quot;IDs&quot;: &quot;ENSG00000198081&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.6987063884735107, &quot;y&quot;: -0.8910002112388611, &quot;IDs&quot;: &quot;ENSG00000199023&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.8928794860839844, &quot;y&quot;: -1.7444852590560913, &quot;IDs&quot;: &quot;ENSG00000202314&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.5010749101638794, &quot;y&quot;: -1.6425715684890747, &quot;IDs&quot;: &quot;ENSG00000206897&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.58425772190094, &quot;y&quot;: -1.5049145221710205, &quot;IDs&quot;: &quot;ENSG00000212493&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.5221034288406372, &quot;y&quot;: -1.7591203451156616, &quot;IDs&quot;: &quot;ENSG00000213513&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -2.2911670207977295, &quot;y&quot;: -1.3131251335144043, &quot;IDs&quot;: &quot;ENSG00000214331&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.2019050121307373, &quot;y&quot;: -1.2444493770599365, &quot;IDs&quot;: &quot;ENSG00000215354&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.4276915788650513, &quot;y&quot;: -0.6447229385375977, &quot;IDs&quot;: &quot;ENSG00000221044&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5778888463974, &quot;y&quot;: -3.5216493606567383, &quot;IDs&quot;: &quot;ENSG00000225450&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.0887795686721802, &quot;y&quot;: -0.45958802103996277, &quot;IDs&quot;: &quot;ENSG00000227053&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.078417420387268, &quot;y&quot;: -0.34372594952583313, &quot;IDs&quot;: &quot;ENSG00000227777&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.0844311714172363, &quot;y&quot;: 1.5350666046142578, &quot;IDs&quot;: &quot;ENSG00000228412&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.3181357383728027, &quot;y&quot;: -0.8109601736068726, &quot;IDs&quot;: &quot;ENSG00000229107&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.3120313584804535, &quot;y&quot;: -0.7528877258300781, &quot;IDs&quot;: &quot;ENSG00000231701&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.311025857925415, &quot;y&quot;: -0.5783610343933105, &quot;IDs&quot;: &quot;ENSG00000231714&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -2.628591775894165, &quot;y&quot;: -1.5960866212844849, &quot;IDs&quot;: &quot;ENSG00000232611&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.8617109060287476, &quot;y&quot;: -0.9254773855209351, &quot;IDs&quot;: &quot;ENSG00000234832&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1252622604370117, &quot;y&quot;: -0.5264666080474854, &quot;IDs&quot;: &quot;ENSG00000236013&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -0.42499369382858276, &quot;y&quot;: -0.8822339177131653, &quot;IDs&quot;: &quot;ENSG00000236519&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.28363037109375, &quot;y&quot;: -1.205893874168396, &quot;IDs&quot;: &quot;ENSG00000236581&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -0.8095158338546753, &quot;y&quot;: -1.695941686630249, &quot;IDs&quot;: &quot;ENSG00000242615&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.518604040145874, &quot;y&quot;: -4.287627220153809, &quot;IDs&quot;: &quot;ENSG00000243008&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.8424498438835144, &quot;y&quot;: -0.7594585418701172, &quot;IDs&quot;: &quot;ENSG00000250240&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -0.9511232376098633, &quot;y&quot;: -0.9846889972686768, &quot;IDs&quot;: &quot;ENSG00000250365&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.2298651933670044, &quot;y&quot;: -0.5776914954185486, &quot;IDs&quot;: &quot;ENSG00000251442&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.245702862739563, &quot;y&quot;: -0.7051792144775391, &quot;IDs&quot;: &quot;ENSG00000254229&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.340195655822754, &quot;y&quot;: -1.7915209531784058, &quot;IDs&quot;: &quot;ENSG00000254400&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.9507179260253906, &quot;y&quot;: -3.1149649620056152, &quot;IDs&quot;: &quot;ENSG00000258450&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.5075052976608276, &quot;y&quot;: -0.6520002484321594, &quot;IDs&quot;: &quot;ENSG00000259687&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -0.8552243709564209, &quot;y&quot;: -0.8998591303825378, &quot;IDs&quot;: &quot;ENSG00000259820&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.746889352798462, &quot;y&quot;: -0.937871515750885, &quot;IDs&quot;: &quot;ENSG00000260742&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.6811000108718872, &quot;y&quot;: -1.4027411937713623, &quot;IDs&quot;: &quot;ENSG00000260830&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.327887773513794, &quot;y&quot;: -2.5296573638916016, &quot;IDs&quot;: &quot;ENSG00000261029&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -2.463825225830078, &quot;y&quot;: -0.9553134441375732, &quot;IDs&quot;: &quot;ENSG00000262454&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.2544318437576294, &quot;y&quot;: -0.6959084868431091, &quot;IDs&quot;: &quot;ENSG00000265019&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.482526183128357, &quot;y&quot;: -1.5424132347106934, &quot;IDs&quot;: &quot;ENSG00000267316&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.290756940841675, &quot;y&quot;: -0.9577041864395142, &quot;IDs&quot;: &quot;ENSG00000268543&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.6664741039276123, &quot;y&quot;: -0.9865793585777283, &quot;IDs&quot;: &quot;ENSG00000268635&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.4777294397354126, &quot;y&quot;: -0.4821438491344452, &quot;IDs&quot;: &quot;ENSG00000268945&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.5669893026351929, &quot;y&quot;: -1.3697913885116577, &quot;IDs&quot;: &quot;ENSG00000269929&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.1341124773025513, &quot;y&quot;: 0.009639608673751354, &quot;IDs&quot;: &quot;ENSG00000271361&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -0.7975950837135315, &quot;y&quot;: -0.3988904654979706, &quot;IDs&quot;: &quot;ENSG00000272086&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.895273208618164, &quot;y&quot;: -0.6927668452262878, &quot;IDs&quot;: &quot;ENSG00000272622&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.0877822637557983, &quot;y&quot;: -0.18190300464630127, &quot;IDs&quot;: &quot;ENSG00000274292&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.340842604637146, &quot;y&quot;: -1.2087169885635376, &quot;IDs&quot;: &quot;ENSG00000274340&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.2201720476150513, &quot;y&quot;: -1.2290798425674438, &quot;IDs&quot;: &quot;ENSG00000274598&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.704980492591858, &quot;y&quot;: -1.5184296369552612, &quot;IDs&quot;: &quot;ENSG00000279075&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.47205132246017456, &quot;y&quot;: -0.8187592029571533, &quot;IDs&quot;: &quot;ENSG00000279476&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.3228720426559448, &quot;y&quot;: -0.3191169798374176, &quot;IDs&quot;: &quot;ENSG00000285525&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.54282283782959, &quot;y&quot;: -4.134986877441406, &quot;IDs&quot;: &quot;ENSG00000120251&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.0667873620986938, &quot;y&quot;: 0.539997398853302, &quot;IDs&quot;: &quot;ENSG00000124762&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2004964351654053, &quot;y&quot;: -4.3009819984436035, &quot;IDs&quot;: &quot;ENSG00000272702&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.744643449783325, &quot;y&quot;: -1.51804780960083, &quot;IDs&quot;: &quot;ENSG00000005381&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2965846061706543, &quot;y&quot;: -1.9525753259658813, &quot;IDs&quot;: &quot;ENSG00000005513&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.90669584274292, &quot;y&quot;: -1.1140427589416504, &quot;IDs&quot;: &quot;ENSG00000006059&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5572936534881592, &quot;y&quot;: -1.8632370233535767, &quot;IDs&quot;: &quot;ENSG00000006062&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.678651213645935, &quot;y&quot;: -1.9506800174713135, &quot;IDs&quot;: &quot;ENSG00000006459&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.6430319547653198, &quot;y&quot;: -1.1392438411712646, &quot;IDs&quot;: &quot;ENSG00000008516&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.788707971572876, &quot;y&quot;: -1.5968480110168457, &quot;IDs&quot;: &quot;ENSG00000010030&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4780354499816895, &quot;y&quot;: -3.379371166229248, &quot;IDs&quot;: &quot;ENSG00000010310&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.7041876316070557, &quot;y&quot;: -1.7605160474777222, &quot;IDs&quot;: &quot;ENSG00000019186&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.729097843170166, &quot;y&quot;: -1.558663249015808, &quot;IDs&quot;: &quot;ENSG00000027869&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2339377403259277, &quot;y&quot;: -4.039239883422852, &quot;IDs&quot;: &quot;ENSG00000028137&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.8501718044281006, &quot;y&quot;: -0.009949847124516964, &quot;IDs&quot;: &quot;ENSG00000028277&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.1022082567214966, &quot;y&quot;: -2.018141746520996, &quot;IDs&quot;: &quot;ENSG00000049249&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4585859775543213, &quot;y&quot;: -3.322551965713501, &quot;IDs&quot;: &quot;ENSG00000049769&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.82464599609375, &quot;y&quot;: -2.4647622108459473, &quot;IDs&quot;: &quot;ENSG00000051108&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.6350138187408447, &quot;y&quot;: -4.086379528045654, &quot;IDs&quot;: &quot;ENSG00000058404&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4945154190063477, &quot;y&quot;: -2.02744460105896, &quot;IDs&quot;: &quot;ENSG00000064692&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.0113418102264404, &quot;y&quot;: -3.978358030319214, &quot;IDs&quot;: &quot;ENSG00000070748&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.4798569679260254, &quot;y&quot;: -2.0324764251708984, &quot;IDs&quot;: &quot;ENSG00000070808&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.732611894607544, &quot;y&quot;: -1.7321488857269287, &quot;IDs&quot;: &quot;ENSG00000070915&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7318761348724365, &quot;y&quot;: -3.930189609527588, &quot;IDs&quot;: &quot;ENSG00000075388&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.2531423568725586, &quot;y&quot;: -2.388278007507324, &quot;IDs&quot;: &quot;ENSG00000076356&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.815938949584961, &quot;y&quot;: -1.1193870306015015, &quot;IDs&quot;: &quot;ENSG00000077150&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2763938903808594, &quot;y&quot;: -1.6275595426559448, &quot;IDs&quot;: &quot;ENSG00000077238&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.963384747505188, &quot;y&quot;: -1.5479505062103271, &quot;IDs&quot;: &quot;ENSG00000079277&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.601562976837158, &quot;y&quot;: -1.2777740955352783, &quot;IDs&quot;: &quot;ENSG00000081059&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1870131492614746, &quot;y&quot;: -1.464942455291748, &quot;IDs&quot;: &quot;ENSG00000095752&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.6757627725601196, &quot;y&quot;: -2.552088499069214, &quot;IDs&quot;: &quot;ENSG00000099625&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7284348011016846, &quot;y&quot;: -0.9197568297386169, &quot;IDs&quot;: &quot;ENSG00000100055&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8524043560028076, &quot;y&quot;: -3.110159397125244, &quot;IDs&quot;: &quot;ENSG00000100302&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.2019143104553223, &quot;y&quot;: -2.497720241546631, &quot;IDs&quot;: &quot;ENSG00000100311&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5138065814971924, &quot;y&quot;: -2.3664329051971436, &quot;IDs&quot;: &quot;ENSG00000100341&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.0256261825561523, &quot;y&quot;: -2.2579538822174072, &quot;IDs&quot;: &quot;ENSG00000100368&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.9588581323623657, &quot;y&quot;: -0.7217841744422913, &quot;IDs&quot;: &quot;ENSG00000100628&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8310859203338623, &quot;y&quot;: -3.3043854236602783, &quot;IDs&quot;: &quot;ENSG00000101134&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.4878249168395996, &quot;y&quot;: -0.7632045149803162, &quot;IDs&quot;: &quot;ENSG00000101292&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1635794639587402, &quot;y&quot;: -2.6822633743286133, &quot;IDs&quot;: &quot;ENSG00000101670&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.331998348236084, &quot;y&quot;: -4.151176452636719, &quot;IDs&quot;: &quot;ENSG00000103150&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.2626006603240967, &quot;y&quot;: -2.130363941192627, &quot;IDs&quot;: &quot;ENSG00000103196&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.081623077392578, &quot;y&quot;: -2.275193452835083, &quot;IDs&quot;: &quot;ENSG00000103710&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.2425496578216553, &quot;y&quot;: -1.7611758708953857, &quot;IDs&quot;: &quot;ENSG00000103888&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.4186489582061768, &quot;y&quot;: -2.2895314693450928, &quot;IDs&quot;: &quot;ENSG00000105509&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1546151638031006, &quot;y&quot;: -3.413421869277954, &quot;IDs&quot;: &quot;ENSG00000105538&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.288848876953125, &quot;y&quot;: -2.317662239074707, &quot;IDs&quot;: &quot;ENSG00000106003&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.1175304651260376, &quot;y&quot;: -2.5022692680358887, &quot;IDs&quot;: &quot;ENSG00000106366&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.2118661403656006, &quot;y&quot;: -1.1779509782791138, &quot;IDs&quot;: &quot;ENSG00000107984&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5558600425720215, &quot;y&quot;: -0.6985328197479248, &quot;IDs&quot;: &quot;ENSG00000108342&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.421163558959961, &quot;y&quot;: -2.6069469451904297, &quot;IDs&quot;: &quot;ENSG00000108405&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.1190006732940674, &quot;y&quot;: -2.0313751697540283, &quot;IDs&quot;: &quot;ENSG00000108688&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.027026414871216, &quot;y&quot;: -0.8216583728790283, &quot;IDs&quot;: &quot;ENSG00000108691&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5705331563949585, &quot;y&quot;: -0.49067792296409607, &quot;IDs&quot;: &quot;ENSG00000108932&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5464794635772705, &quot;y&quot;: -3.9191689491271973, &quot;IDs&quot;: &quot;ENSG00000109956&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.986189365386963, &quot;y&quot;: -3.2817940711975098, &quot;IDs&quot;: &quot;ENSG00000110777&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.629371166229248, &quot;y&quot;: -0.5263946056365967, &quot;IDs&quot;: &quot;ENSG00000110944&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.569188117980957, &quot;y&quot;: -0.8819981217384338, &quot;IDs&quot;: &quot;ENSG00000111537&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.844712257385254, &quot;y&quot;: -3.718052864074707, &quot;IDs&quot;: &quot;ENSG00000111859&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.0408830642700195, &quot;y&quot;: -2.164733409881592, &quot;IDs&quot;: &quot;ENSG00000112033&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.3557634353637695, &quot;y&quot;: -2.014082908630371, &quot;IDs&quot;: &quot;ENSG00000112139&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.426368236541748, &quot;y&quot;: -1.9870296716690063, &quot;IDs&quot;: &quot;ENSG00000113070&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1608164310455322, &quot;y&quot;: -3.4338531494140625, &quot;IDs&quot;: &quot;ENSG00000113263&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.249194622039795, &quot;y&quot;: -0.8742721080780029, &quot;IDs&quot;: &quot;ENSG00000113578&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.0956835746765137, &quot;y&quot;: -3.4453961849212646, &quot;IDs&quot;: &quot;ENSG00000113721&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7711988687515259, &quot;y&quot;: -0.3532550036907196, &quot;IDs&quot;: &quot;ENSG00000115009&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.0861620903015137, &quot;y&quot;: -3.680100202560425, &quot;IDs&quot;: &quot;ENSG00000115616&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.095327377319336, &quot;y&quot;: -1.378417730331421, &quot;IDs&quot;: &quot;ENSG00000115665&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.347031354904175, &quot;y&quot;: -1.4558006525039673, &quot;IDs&quot;: &quot;ENSG00000115956&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.752211332321167, &quot;y&quot;: -1.4718389511108398, &quot;IDs&quot;: &quot;ENSG00000116329&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.0804736614227295, &quot;y&quot;: -0.5656085014343262, &quot;IDs&quot;: &quot;ENSG00000117152&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.6686666011810303, &quot;y&quot;: -4.028331756591797, &quot;IDs&quot;: &quot;ENSG00000117228&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8741872310638428, &quot;y&quot;: -1.7852667570114136, &quot;IDs&quot;: &quot;ENSG00000117560&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.890857696533203, &quot;y&quot;: -2.263446569442749, &quot;IDs&quot;: &quot;ENSG00000118922&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.1935057640075684, &quot;y&quot;: -2.569417715072632, &quot;IDs&quot;: &quot;ENSG00000121039&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.3293051719665527, &quot;y&quot;: -1.777295470237732, &quot;IDs&quot;: &quot;ENSG00000121797&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5063726902008057, &quot;y&quot;: -4.323983669281006, &quot;IDs&quot;: &quot;ENSG00000123119&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7848553657531738, &quot;y&quot;: -3.2743401527404785, &quot;IDs&quot;: &quot;ENSG00000124143&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.9411675930023193, &quot;y&quot;: -2.9991679191589355, &quot;IDs&quot;: &quot;ENSG00000124212&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.9532132148742676, &quot;y&quot;: -0.9822487831115723, &quot;IDs&quot;: &quot;ENSG00000124479&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.235551595687866, &quot;y&quot;: -3.175783634185791, &quot;IDs&quot;: &quot;ENSG00000124508&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5627048015594482, &quot;y&quot;: -1.5937634706497192, &quot;IDs&quot;: &quot;ENSG00000125084&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.3267372846603394, &quot;y&quot;: -2.241999387741089, &quot;IDs&quot;: &quot;ENSG00000125089&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.0926387310028076, &quot;y&quot;: -2.514409303665161, &quot;IDs&quot;: &quot;ENSG00000125347&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -0.9985743165016174, &quot;y&quot;: -1.1965326070785522, &quot;IDs&quot;: &quot;ENSG00000125618&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5468424558639526, &quot;y&quot;: -0.8202086091041565, &quot;IDs&quot;: &quot;ENSG00000125637&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.0103585720062256, &quot;y&quot;: -1.9669126272201538, &quot;IDs&quot;: &quot;ENSG00000125735&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.011101007461548, &quot;y&quot;: -3.702432870864868, &quot;IDs&quot;: &quot;ENSG00000125850&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5747804641723633, &quot;y&quot;: -1.9544684886932373, &quot;IDs&quot;: &quot;ENSG00000126353&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4176182746887207, &quot;y&quot;: -4.286570072174072, &quot;IDs&quot;: &quot;ENSG00000127124&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.3120408058166504, &quot;y&quot;: -1.7320270538330078, &quot;IDs&quot;: &quot;ENSG00000127954&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.0863425731658936, &quot;y&quot;: -3.22758150100708, &quot;IDs&quot;: &quot;ENSG00000128254&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5266780853271484, &quot;y&quot;: -3.3505117893218994, &quot;IDs&quot;: &quot;ENSG00000128645&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.1258113384246826, &quot;y&quot;: -3.224236488342285, &quot;IDs&quot;: &quot;ENSG00000129451&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1922247409820557, &quot;y&quot;: -2.2790188789367676, &quot;IDs&quot;: &quot;ENSG00000129514&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4356849193573, &quot;y&quot;: -3.9019389152526855, &quot;IDs&quot;: &quot;ENSG00000129521&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4190385341644287, &quot;y&quot;: -3.725740432739258, &quot;IDs&quot;: &quot;ENSG00000130751&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8568650484085083, &quot;y&quot;: -0.8179469704627991, &quot;IDs&quot;: &quot;ENSG00000131435&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.4338746070861816, &quot;y&quot;: -1.7241698503494263, &quot;IDs&quot;: &quot;ENSG00000131737&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.2779033184051514, &quot;y&quot;: -1.4644856452941895, &quot;IDs&quot;: &quot;ENSG00000131738&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.6677465438842773, &quot;y&quot;: -1.5475364923477173, &quot;IDs&quot;: &quot;ENSG00000131746&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.586064338684082, &quot;y&quot;: -1.066767930984497, &quot;IDs&quot;: &quot;ENSG00000131885&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.198889970779419, &quot;y&quot;: -1.1051092147827148, &quot;IDs&quot;: &quot;ENSG00000132334&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8796790838241577, &quot;y&quot;: -0.6542597413063049, &quot;IDs&quot;: &quot;ENSG00000132481&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.238349676132202, &quot;y&quot;: -3.3943445682525635, &quot;IDs&quot;: &quot;ENSG00000133019&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.272907018661499, &quot;y&quot;: -1.22900390625, &quot;IDs&quot;: &quot;ENSG00000133116&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7508811950683594, &quot;y&quot;: -3.7699432373046875, &quot;IDs&quot;: &quot;ENSG00000134259&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.5037758350372314, &quot;y&quot;: -0.8157031536102295, &quot;IDs&quot;: &quot;ENSG00000134339&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.0458005666732788, &quot;y&quot;: -2.3640947341918945, &quot;IDs&quot;: &quot;ENSG00000134363&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.545391082763672, &quot;y&quot;: -1.4268434047698975, &quot;IDs&quot;: &quot;ENSG00000134668&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.0505945682525635, &quot;y&quot;: -3.0558130741119385, &quot;IDs&quot;: &quot;ENSG00000134817&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.6679184436798096, &quot;y&quot;: -4.047019004821777, &quot;IDs&quot;: &quot;ENSG00000134955&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.398101329803467, &quot;y&quot;: -2.083336353302002, &quot;IDs&quot;: &quot;ENSG00000135517&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.470327377319336, &quot;y&quot;: -3.047236680984497, &quot;IDs&quot;: &quot;ENSG00000135925&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.6863139867782593, &quot;y&quot;: -3.2055482864379883, &quot;IDs&quot;: &quot;ENSG00000136052&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.39590585231781, &quot;y&quot;: -1.3537018299102783, &quot;IDs&quot;: &quot;ENSG00000136244&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.3682072162628174, &quot;y&quot;: -0.7852793335914612, &quot;IDs&quot;: &quot;ENSG00000136286&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.049431324005127, &quot;y&quot;: -2.331413984298706, &quot;IDs&quot;: &quot;ENSG00000136297&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.342890977859497, &quot;y&quot;: -3.145634412765503, &quot;IDs&quot;: &quot;ENSG00000136383&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.746361494064331, &quot;y&quot;: -0.9849405884742737, &quot;IDs&quot;: &quot;ENSG00000136689&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.2863777875900269, &quot;y&quot;: -0.5791401267051697, &quot;IDs&quot;: &quot;ENSG00000137078&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.3256242275238037, &quot;y&quot;: -1.5060914754867554, &quot;IDs&quot;: &quot;ENSG00000137094&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.3882994651794434, &quot;y&quot;: -4.04213809967041, &quot;IDs&quot;: &quot;ENSG00000137672&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.0401008129119873, &quot;y&quot;: -3.8687920570373535, &quot;IDs&quot;: &quot;ENSG00000137707&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5633292198181152, &quot;y&quot;: -4.180363178253174, &quot;IDs&quot;: &quot;ENSG00000137809&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.141144275665283, &quot;y&quot;: -1.77494478225708, &quot;IDs&quot;: &quot;ENSG00000137962&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.9993096590042114, &quot;y&quot;: -0.9359631538391113, &quot;IDs&quot;: &quot;ENSG00000138347&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.4539463520050049, &quot;y&quot;: -0.6912156939506531, &quot;IDs&quot;: &quot;ENSG00000138623&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5456619262695312, &quot;y&quot;: -3.0522634983062744, &quot;IDs&quot;: &quot;ENSG00000138685&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.444265842437744, &quot;y&quot;: -4.168081283569336, &quot;IDs&quot;: &quot;ENSG00000139865&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.662933349609375, &quot;y&quot;: -1.6460801362991333, &quot;IDs&quot;: &quot;ENSG00000140478&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.164550542831421, &quot;y&quot;: -3.8186933994293213, &quot;IDs&quot;: &quot;ENSG00000141622&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.133485794067383, &quot;y&quot;: -3.4157912731170654, &quot;IDs&quot;: &quot;ENSG00000141750&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.6307355165481567, &quot;y&quot;: -0.7578282952308655, &quot;IDs&quot;: &quot;ENSG00000142511&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4202470779418945, &quot;y&quot;: -2.228571891784668, &quot;IDs&quot;: &quot;ENSG00000142609&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.081852674484253, &quot;y&quot;: -3.160316228866577, &quot;IDs&quot;: &quot;ENSG00000142623&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.597127914428711, &quot;y&quot;: -4.199298858642578, &quot;IDs&quot;: &quot;ENSG00000143816&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.227607011795044, &quot;y&quot;: -1.7063931226730347, &quot;IDs&quot;: &quot;ENSG00000144130&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1475472450256348, &quot;y&quot;: -1.2359163761138916, &quot;IDs&quot;: &quot;ENSG00000144834&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.2743477821350098, &quot;y&quot;: -2.527334213256836, &quot;IDs&quot;: &quot;ENSG00000145002&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.698768138885498, &quot;y&quot;: -1.6353228092193604, &quot;IDs&quot;: &quot;ENSG00000145040&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2324020862579346, &quot;y&quot;: -4.228517055511475, &quot;IDs&quot;: &quot;ENSG00000145198&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.9020445346832275, &quot;y&quot;: -3.0134527683258057, &quot;IDs&quot;: &quot;ENSG00000146005&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.9027645587921143, &quot;y&quot;: -3.812389373779297, &quot;IDs&quot;: &quot;ENSG00000146192&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.291355609893799, &quot;y&quot;: -3.984905481338501, &quot;IDs&quot;: &quot;ENSG00000146648&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7298855781555176, &quot;y&quot;: -2.98939847946167, &quot;IDs&quot;: &quot;ENSG00000147443&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5737192630767822, &quot;y&quot;: -3.631113052368164, &quot;IDs&quot;: &quot;ENSG00000148734&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5921642780303955, &quot;y&quot;: -2.2116401195526123, &quot;IDs&quot;: &quot;ENSG00000149633&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7825038433074951, &quot;y&quot;: -3.6361448764801025, &quot;IDs&quot;: &quot;ENSG00000153233&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.1051113605499268, &quot;y&quot;: -1.6235243082046509, &quot;IDs&quot;: &quot;ENSG00000153531&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5026988983154297, &quot;y&quot;: -2.492337465286255, &quot;IDs&quot;: &quot;ENSG00000153707&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.232226848602295, &quot;y&quot;: -3.9482922554016113, &quot;IDs&quot;: &quot;ENSG00000154764&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.0386979579925537, &quot;y&quot;: -3.135416269302368, &quot;IDs&quot;: &quot;ENSG00000154783&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8064088821411133, &quot;y&quot;: -3.8500988483428955, &quot;IDs&quot;: &quot;ENSG00000155324&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.352444887161255, &quot;y&quot;: -1.494799256324768, &quot;IDs&quot;: &quot;ENSG00000155897&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.3643290996551514, &quot;y&quot;: -2.676372766494751, &quot;IDs&quot;: &quot;ENSG00000155926&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8789116144180298, &quot;y&quot;: -1.6343350410461426, &quot;IDs&quot;: &quot;ENSG00000156453&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.4065362215042114, &quot;y&quot;: -0.3314887285232544, &quot;IDs&quot;: &quot;ENSG00000159167&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.076695680618286, &quot;y&quot;: -2.5314524173736572, &quot;IDs&quot;: &quot;ENSG00000159251&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.458846092224121, &quot;y&quot;: -2.0007834434509277, &quot;IDs&quot;: &quot;ENSG00000159289&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7399340867996216, &quot;y&quot;: -2.9527533054351807, &quot;IDs&quot;: &quot;ENSG00000159784&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5624821186065674, &quot;y&quot;: -2.7772672176361084, &quot;IDs&quot;: &quot;ENSG00000160472&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7918684482574463, &quot;y&quot;: -3.5547869205474854, &quot;IDs&quot;: &quot;ENSG00000160838&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.0857839584350586, &quot;y&quot;: -1.9497654438018799, &quot;IDs&quot;: &quot;ENSG00000161594&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.1445127725601196, &quot;y&quot;: -2.502939224243164, &quot;IDs&quot;: &quot;ENSG00000162078&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1601736545562744, &quot;y&quot;: -3.4107003211975098, &quot;IDs&quot;: &quot;ENSG00000162426&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4034817218780518, &quot;y&quot;: -4.007928371429443, &quot;IDs&quot;: &quot;ENSG00000162804&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.5340588092803955, &quot;y&quot;: -2.4876465797424316, &quot;IDs&quot;: &quot;ENSG00000162873&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8968226909637451, &quot;y&quot;: -1.459067702293396, &quot;IDs&quot;: &quot;ENSG00000162892&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8492090702056885, &quot;y&quot;: -1.6044753789901733, &quot;IDs&quot;: &quot;ENSG00000162975&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.796976089477539, &quot;y&quot;: -2.407468795776367, &quot;IDs&quot;: &quot;ENSG00000163053&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.353906512260437, &quot;y&quot;: -0.49606841802597046, &quot;IDs&quot;: &quot;ENSG00000163082&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.353026866912842, &quot;y&quot;: -3.9242913722991943, &quot;IDs&quot;: &quot;ENSG00000163347&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.2076168060302734, &quot;y&quot;: -0.33039411902427673, &quot;IDs&quot;: &quot;ENSG00000163497&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.1147515773773193, &quot;y&quot;: -1.0636011362075806, &quot;IDs&quot;: &quot;ENSG00000163814&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.103957176208496, &quot;y&quot;: -0.9537171721458435, &quot;IDs&quot;: &quot;ENSG00000163932&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7572946548461914, &quot;y&quot;: -3.0526793003082275, &quot;IDs&quot;: &quot;ENSG00000163995&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8409535884857178, &quot;y&quot;: -1.1583776473999023, &quot;IDs&quot;: &quot;ENSG00000164484&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.352304458618164, &quot;y&quot;: -3.1251211166381836, &quot;IDs&quot;: &quot;ENSG00000165168&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8213093280792236, &quot;y&quot;: -2.0495054721832275, &quot;IDs&quot;: &quot;ENSG00000165449&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.257528066635132, &quot;y&quot;: -1.577647089958191, &quot;IDs&quot;: &quot;ENSG00000165478&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.522076368331909, &quot;y&quot;: -1.0662544965744019, &quot;IDs&quot;: &quot;ENSG00000165685&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8700482845306396, &quot;y&quot;: -3.041106700897217, &quot;IDs&quot;: &quot;ENSG00000165816&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2630934715270996, &quot;y&quot;: -1.8169591426849365, &quot;IDs&quot;: &quot;ENSG00000165970&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.9553805589675903, &quot;y&quot;: -1.4844191074371338, &quot;IDs&quot;: &quot;ENSG00000167178&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2396676540374756, &quot;y&quot;: -1.2771493196487427, &quot;IDs&quot;: &quot;ENSG00000167210&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.430577278137207, &quot;y&quot;: -2.2935171127319336, &quot;IDs&quot;: &quot;ENSG00000167487&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8803439140319824, &quot;y&quot;: -1.117027759552002, &quot;IDs&quot;: &quot;ENSG00000167772&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.9622302651405334, &quot;y&quot;: -0.2217622846364975, &quot;IDs&quot;: &quot;ENSG00000167874&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.3075778484344482, &quot;y&quot;: -1.8791805505752563, &quot;IDs&quot;: &quot;ENSG00000167984&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.2619777917861938, &quot;y&quot;: -2.879328489303589, &quot;IDs&quot;: &quot;ENSG00000168334&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.854759931564331, &quot;y&quot;: -2.850281238555908, &quot;IDs&quot;: &quot;ENSG00000168398&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.3500181436538696, &quot;y&quot;: -1.2626521587371826, &quot;IDs&quot;: &quot;ENSG00000168421&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.0980355739593506, &quot;y&quot;: -1.106825590133667, &quot;IDs&quot;: &quot;ENSG00000168621&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.0252556800842285, &quot;y&quot;: -2.746159315109253, &quot;IDs&quot;: &quot;ENSG00000169330&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8283631801605225, &quot;y&quot;: -1.1314127445220947, &quot;IDs&quot;: &quot;ENSG00000169508&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7810571193695068, &quot;y&quot;: -0.8251162171363831, &quot;IDs&quot;: &quot;ENSG00000169851&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7136095762252808, &quot;y&quot;: -1.8574230670928955, &quot;IDs&quot;: &quot;ENSG00000169991&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5619760751724243, &quot;y&quot;: -1.7138079404830933, &quot;IDs&quot;: &quot;ENSG00000170439&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.657432794570923, &quot;y&quot;: -1.5239579677581787, &quot;IDs&quot;: &quot;ENSG00000170846&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.00262188911438, &quot;y&quot;: -3.180786371231079, &quot;IDs&quot;: &quot;ENSG00000170915&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.1376136541366577, &quot;y&quot;: -3.062950372695923, &quot;IDs&quot;: &quot;ENSG00000171189&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.750089645385742, &quot;y&quot;: -3.9046220779418945, &quot;IDs&quot;: &quot;ENSG00000171303&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.3426806926727295, &quot;y&quot;: -0.6157278418540955, &quot;IDs&quot;: &quot;ENSG00000171488&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.1148338317871094, &quot;y&quot;: -2.523273468017578, &quot;IDs&quot;: &quot;ENSG00000171604&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.3257904052734375, &quot;y&quot;: -2.872037887573242, &quot;IDs&quot;: &quot;ENSG00000171766&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.0658059120178223, &quot;y&quot;: -1.3894016742706299, &quot;IDs&quot;: &quot;ENSG00000171847&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.102790117263794, &quot;y&quot;: -3.148953914642334, &quot;IDs&quot;: &quot;ENSG00000171903&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.3394057750701904, &quot;y&quot;: -2.6169557571411133, &quot;IDs&quot;: &quot;ENSG00000171954&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.959030032157898, &quot;y&quot;: -2.6745240688323975, &quot;IDs&quot;: &quot;ENSG00000172382&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.43688702583313, &quot;y&quot;: -2.6166131496429443, &quot;IDs&quot;: &quot;ENSG00000172460&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.0737035274505615, &quot;y&quot;: -3.2304275035858154, &quot;IDs&quot;: &quot;ENSG00000172508&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2468087673187256, &quot;y&quot;: -3.3742501735687256, &quot;IDs&quot;: &quot;ENSG00000172738&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.0586782693862915, &quot;y&quot;: -1.8797169923782349, &quot;IDs&quot;: &quot;ENSG00000172995&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.157874822616577, &quot;y&quot;: -2.702911615371704, &quot;IDs&quot;: &quot;ENSG00000173227&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.59343421459198, &quot;y&quot;: -3.199532985687256, &quot;IDs&quot;: &quot;ENSG00000173295&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.830925226211548, &quot;y&quot;: -3.869086503982544, &quot;IDs&quot;: &quot;ENSG00000173391&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.772813558578491, &quot;y&quot;: -3.8282947540283203, &quot;IDs&quot;: &quot;ENSG00000173641&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.6100916862487793, &quot;y&quot;: -4.0903401374816895, &quot;IDs&quot;: &quot;ENSG00000173838&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7520891427993774, &quot;y&quot;: -3.5320849418640137, &quot;IDs&quot;: &quot;ENSG00000174514&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.3179917335510254, &quot;y&quot;: -2.3231027126312256, &quot;IDs&quot;: &quot;ENSG00000174600&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8150365352630615, &quot;y&quot;: -3.333197832107544, &quot;IDs&quot;: &quot;ENSG00000174945&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.493955135345459, &quot;y&quot;: -2.0332937240600586, &quot;IDs&quot;: &quot;ENSG00000175463&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.483651638031006, &quot;y&quot;: -1.3911278247833252, &quot;IDs&quot;: &quot;ENSG00000175746&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8258267641067505, &quot;y&quot;: -2.2198352813720703, &quot;IDs&quot;: &quot;ENSG00000175920&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.350473642349243, &quot;y&quot;: -2.416375160217285, &quot;IDs&quot;: &quot;ENSG00000176170&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8442916870117188, &quot;y&quot;: -2.255143165588379, &quot;IDs&quot;: &quot;ENSG00000176595&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.2161080837249756, &quot;y&quot;: -2.6548335552215576, &quot;IDs&quot;: &quot;ENSG00000176845&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.6651835441589355, &quot;y&quot;: -0.46966829895973206, &quot;IDs&quot;: &quot;ENSG00000177238&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.366230010986328, &quot;y&quot;: -2.899207592010498, &quot;IDs&quot;: &quot;ENSG00000178562&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.3127952814102173, &quot;y&quot;: -2.1029160022735596, &quot;IDs&quot;: &quot;ENSG00000178726&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1644644737243652, &quot;y&quot;: -2.623542308807373, &quot;IDs&quot;: &quot;ENSG00000179292&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7056251764297485, &quot;y&quot;: -2.071516990661621, &quot;IDs&quot;: &quot;ENSG00000180044&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8610814809799194, &quot;y&quot;: -1.4193819761276245, &quot;IDs&quot;: &quot;ENSG00000180535&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5415148735046387, &quot;y&quot;: -2.4963135719299316, &quot;IDs&quot;: &quot;ENSG00000180613&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.7292013168334961, &quot;y&quot;: -1.7653883695602417, &quot;IDs&quot;: &quot;ENSG00000180616&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.6978533267974854, &quot;y&quot;: -4.010559558868408, &quot;IDs&quot;: &quot;ENSG00000181409&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.4320037364959717, &quot;y&quot;: -1.9228382110595703, &quot;IDs&quot;: &quot;ENSG00000181634&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.7008038759231567, &quot;y&quot;: -0.20062881708145142, &quot;IDs&quot;: &quot;ENSG00000181649&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.3220815658569336, &quot;y&quot;: -2.186067819595337, &quot;IDs&quot;: &quot;ENSG00000181856&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.447779893875122, &quot;y&quot;: -2.9669528007507324, &quot;IDs&quot;: &quot;ENSG00000182389&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.256908893585205, &quot;y&quot;: -2.696957588195801, &quot;IDs&quot;: &quot;ENSG00000182489&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.186084508895874, &quot;y&quot;: -4.174395561218262, &quot;IDs&quot;: &quot;ENSG00000182674&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.578281879425049, &quot;y&quot;: -2.971146583557129, &quot;IDs&quot;: &quot;ENSG00000182795&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.019921064376831, &quot;y&quot;: -3.148364305496216, &quot;IDs&quot;: &quot;ENSG00000183092&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -3.8252241611480713, &quot;y&quot;: -6.582223892211914, &quot;IDs&quot;: &quot;ENSG00000183454&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5175697803497314, &quot;y&quot;: -2.615133762359619, &quot;IDs&quot;: &quot;ENSG00000183822&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.633782148361206, &quot;y&quot;: -3.768944501876831, &quot;IDs&quot;: &quot;ENSG00000183876&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.935027003288269, &quot;y&quot;: -3.00111722946167, &quot;IDs&quot;: &quot;ENSG00000184058&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4575250148773193, &quot;y&quot;: -1.8355762958526611, &quot;IDs&quot;: &quot;ENSG00000184185&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7547731399536133, &quot;y&quot;: -3.6347663402557373, &quot;IDs&quot;: &quot;ENSG00000184384&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.3922791481018066, &quot;y&quot;: -2.6239914894104004, &quot;IDs&quot;: &quot;ENSG00000184984&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -0.8632174134254456, &quot;y&quot;: 0.40870004892349243, &quot;IDs&quot;: &quot;ENSG00000185477&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.0052027702331543, &quot;y&quot;: -1.0080569982528687, &quot;IDs&quot;: &quot;ENSG00000185634&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.33126962184906, &quot;y&quot;: -2.517085552215576, &quot;IDs&quot;: &quot;ENSG00000186523&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1543562412261963, &quot;y&quot;: -2.8975844383239746, &quot;IDs&quot;: &quot;ENSG00000186765&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8517422676086426, &quot;y&quot;: -1.2074400186538696, &quot;IDs&quot;: &quot;ENSG00000186831&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.583852529525757, &quot;y&quot;: -3.0639030933380127, &quot;IDs&quot;: &quot;ENSG00000186994&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.171393394470215, &quot;y&quot;: -2.7865045070648193, &quot;IDs&quot;: &quot;ENSG00000187135&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7775301933288574, &quot;y&quot;: -3.431839942932129, &quot;IDs&quot;: &quot;ENSG00000187513&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8698188066482544, &quot;y&quot;: -2.5554020404815674, &quot;IDs&quot;: &quot;ENSG00000187595&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.993622064590454, &quot;y&quot;: -2.3265933990478516, &quot;IDs&quot;: &quot;ENSG00000187902&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.407670021057129, &quot;y&quot;: -1.8953981399536133, &quot;IDs&quot;: &quot;ENSG00000187908&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.6907638311386108, &quot;y&quot;: -2.120534896850586, &quot;IDs&quot;: &quot;ENSG00000188015&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.435687780380249, &quot;y&quot;: -3.016488552093506, &quot;IDs&quot;: &quot;ENSG00000188064&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.457634925842285, &quot;y&quot;: -4.10756254196167, &quot;IDs&quot;: &quot;ENSG00000188389&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5957529544830322, &quot;y&quot;: -3.560638427734375, &quot;IDs&quot;: &quot;ENSG00000188850&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5842796564102173, &quot;y&quot;: -0.5977298021316528, &quot;IDs&quot;: &quot;ENSG00000188886&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.6103620529174805, &quot;y&quot;: -1.9379183053970337, &quot;IDs&quot;: &quot;ENSG00000189223&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.1417081356048584, &quot;y&quot;: -1.2078040838241577, &quot;IDs&quot;: &quot;ENSG00000189433&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.691131353378296, &quot;y&quot;: -3.092841863632202, &quot;IDs&quot;: &quot;ENSG00000196979&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8847720623016357, &quot;y&quot;: -3.188077688217163, &quot;IDs&quot;: &quot;ENSG00000197106&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.4094955921173096, &quot;y&quot;: -2.3296825885772705, &quot;IDs&quot;: &quot;ENSG00000197191&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.515244483947754, &quot;y&quot;: -0.6988480687141418, &quot;IDs&quot;: &quot;ENSG00000197632&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.306760311126709, &quot;y&quot;: -0.5705762505531311, &quot;IDs&quot;: &quot;ENSG00000198574&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.25065279006958, &quot;y&quot;: -0.5774565935134888, &quot;IDs&quot;: &quot;ENSG00000198771&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.876686692237854, &quot;y&quot;: -3.3352010250091553, &quot;IDs&quot;: &quot;ENSG00000198947&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.4012248516082764, &quot;y&quot;: -1.3214013576507568, &quot;IDs&quot;: &quot;ENSG00000203446&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.9746952056884766, &quot;y&quot;: -1.3157083988189697, &quot;IDs&quot;: &quot;ENSG00000203782&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.3431639671325684, &quot;y&quot;: -3.9094841480255127, &quot;IDs&quot;: &quot;ENSG00000203804&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.0455267429351807, &quot;y&quot;: -2.573570728302002, &quot;IDs&quot;: &quot;ENSG00000204099&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8343541622161865, &quot;y&quot;: -2.011350631713867, &quot;IDs&quot;: &quot;ENSG00000204131&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.47941517829895, &quot;y&quot;: -1.3816379308700562, &quot;IDs&quot;: &quot;ENSG00000204610&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.116666078567505, &quot;y&quot;: -3.8642194271087646, &quot;IDs&quot;: &quot;ENSG00000204950&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5889883041381836, &quot;y&quot;: -1.5428129434585571, &quot;IDs&quot;: &quot;ENSG00000205177&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.212397336959839, &quot;y&quot;: -1.187359094619751, &quot;IDs&quot;: &quot;ENSG00000205215&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1645736694335938, &quot;y&quot;: -2.9382998943328857, &quot;IDs&quot;: &quot;ENSG00000205632&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.1173840761184692, &quot;y&quot;: -2.840306282043457, &quot;IDs&quot;: &quot;ENSG00000205809&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2286620140075684, &quot;y&quot;: -1.5441993474960327, &quot;IDs&quot;: &quot;ENSG00000205890&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4423046112060547, &quot;y&quot;: -2.7221643924713135, &quot;IDs&quot;: &quot;ENSG00000205913&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.2408214807510376, &quot;y&quot;: -2.5895798206329346, &quot;IDs&quot;: &quot;ENSG00000211455&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5701982975006104, &quot;y&quot;: -0.572399914264679, &quot;IDs&quot;: &quot;ENSG00000213344&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7704243659973145, &quot;y&quot;: -1.2843111753463745, &quot;IDs&quot;: &quot;ENSG00000213937&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.570430278778076, &quot;y&quot;: -4.0930938720703125, &quot;IDs&quot;: &quot;ENSG00000214146&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.380475640296936, &quot;y&quot;: -2.976598024368286, &quot;IDs&quot;: &quot;ENSG00000214514&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.246382713317871, &quot;y&quot;: -1.650589942932129, &quot;IDs&quot;: &quot;ENSG00000214822&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5474534034729004, &quot;y&quot;: -1.2232365608215332, &quot;IDs&quot;: &quot;ENSG00000214856&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4788951873779297, &quot;y&quot;: -2.3794546127319336, &quot;IDs&quot;: &quot;ENSG00000215014&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.516425371170044, &quot;y&quot;: -1.471571683883667, &quot;IDs&quot;: &quot;ENSG00000215186&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.373783826828003, &quot;y&quot;: -0.630786120891571, &quot;IDs&quot;: &quot;ENSG00000215296&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7829060554504395, &quot;y&quot;: -3.31075382232666, &quot;IDs&quot;: &quot;ENSG00000219438&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.6379733085632324, &quot;y&quot;: -0.8881843686103821, &quot;IDs&quot;: &quot;ENSG00000222047&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.523834466934204, &quot;y&quot;: -2.0316526889801025, &quot;IDs&quot;: &quot;ENSG00000223669&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8200604915618896, &quot;y&quot;: -2.6581506729125977, &quot;IDs&quot;: &quot;ENSG00000224596&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.243063449859619, &quot;y&quot;: -2.6579060554504395, &quot;IDs&quot;: &quot;ENSG00000225335&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.677175760269165, &quot;y&quot;: -4.033205509185791, &quot;IDs&quot;: &quot;ENSG00000225339&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.033087968826294, &quot;y&quot;: -1.0382550954818726, &quot;IDs&quot;: &quot;ENSG00000225611&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.9883676767349243, &quot;y&quot;: -3.0142054557800293, &quot;IDs&quot;: &quot;ENSG00000225614&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.186042070388794, &quot;y&quot;: -2.819392204284668, &quot;IDs&quot;: &quot;ENSG00000225670&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.775387167930603, &quot;y&quot;: -2.3643507957458496, &quot;IDs&quot;: &quot;ENSG00000225968&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7484984397888184, &quot;y&quot;: -3.6543684005737305, &quot;IDs&quot;: &quot;ENSG00000226125&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.1469953060150146, &quot;y&quot;: -1.46681809425354, &quot;IDs&quot;: &quot;ENSG00000226377&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4289512634277344, &quot;y&quot;: -3.1845180988311768, &quot;IDs&quot;: &quot;ENSG00000226673&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.0357253551483154, &quot;y&quot;: -3.302042245864868, &quot;IDs&quot;: &quot;ENSG00000226798&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.3589375019073486, &quot;y&quot;: -2.496839761734009, &quot;IDs&quot;: &quot;ENSG00000226921&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.183215618133545, &quot;y&quot;: -1.6520278453826904, &quot;IDs&quot;: &quot;ENSG00000226968&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1995668411254883, &quot;y&quot;: -3.2078609466552734, &quot;IDs&quot;: &quot;ENSG00000227036&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.88909649848938, &quot;y&quot;: -1.1303086280822754, &quot;IDs&quot;: &quot;ENSG00000227300&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4141950607299805, &quot;y&quot;: -4.061679363250732, &quot;IDs&quot;: &quot;ENSG00000227308&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.8671159744262695, &quot;y&quot;: -1.0217201709747314, &quot;IDs&quot;: &quot;ENSG00000227507&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.425323009490967, &quot;y&quot;: -3.269139528274536, &quot;IDs&quot;: &quot;ENSG00000227619&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.376888394355774, &quot;y&quot;: -2.8924057483673096, &quot;IDs&quot;: &quot;ENSG00000228022&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.0399402379989624, &quot;y&quot;: -0.1877627968788147, &quot;IDs&quot;: &quot;ENSG00000228140&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7548314332962036, &quot;y&quot;: -0.671873927116394, &quot;IDs&quot;: &quot;ENSG00000228216&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.3757438659667969, &quot;y&quot;: -2.9084839820861816, &quot;IDs&quot;: &quot;ENSG00000228323&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.846169948577881, &quot;y&quot;: -2.1579208374023438, &quot;IDs&quot;: &quot;ENSG00000228705&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.9579126834869385, &quot;y&quot;: -2.1368706226348877, &quot;IDs&quot;: &quot;ENSG00000228714&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.6159796714782715, &quot;y&quot;: -3.841937780380249, &quot;IDs&quot;: &quot;ENSG00000228775&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.687390089035034, &quot;y&quot;: -3.786045551300049, &quot;IDs&quot;: &quot;ENSG00000229191&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1346826553344727, &quot;y&quot;: -4.080996990203857, &quot;IDs&quot;: &quot;ENSG00000229334&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.3960468769073486, &quot;y&quot;: -2.4278979301452637, &quot;IDs&quot;: &quot;ENSG00000229647&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.463029146194458, &quot;y&quot;: -3.386392593383789, &quot;IDs&quot;: &quot;ENSG00000229848&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.286270022392273, &quot;y&quot;: -2.00339937210083, &quot;IDs&quot;: &quot;ENSG00000229915&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.270017623901367, &quot;y&quot;: -2.6781580448150635, &quot;IDs&quot;: &quot;ENSG00000230650&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5102789402008057, &quot;y&quot;: -1.0136078596115112, &quot;IDs&quot;: &quot;ENSG00000230838&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.057167649269104, &quot;y&quot;: -0.19055336713790894, &quot;IDs&quot;: &quot;ENSG00000231090&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7952994108200073, &quot;y&quot;: -3.2385613918304443, &quot;IDs&quot;: &quot;ENSG00000231274&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8237173557281494, &quot;y&quot;: -3.682133913040161, &quot;IDs&quot;: &quot;ENSG00000231346&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.9131912589073181, &quot;y&quot;: -1.3291946649551392, &quot;IDs&quot;: &quot;ENSG00000231441&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.268089532852173, &quot;y&quot;: -1.4386173486709595, &quot;IDs&quot;: &quot;ENSG00000231645&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.4328973293304443, &quot;y&quot;: -2.0998668670654297, &quot;IDs&quot;: &quot;ENSG00000231672&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.1000473499298096, &quot;y&quot;: -3.2131834030151367, &quot;IDs&quot;: &quot;ENSG00000231948&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.0839366912841797, &quot;y&quot;: -0.5206353068351746, &quot;IDs&quot;: &quot;ENSG00000232783&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.868959665298462, &quot;y&quot;: -1.2973897457122803, &quot;IDs&quot;: &quot;ENSG00000233128&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8981106281280518, &quot;y&quot;: -1.1093380451202393, &quot;IDs&quot;: &quot;ENSG00000233198&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.082458972930908, &quot;y&quot;: -3.013577699661255, &quot;IDs&quot;: &quot;ENSG00000233424&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7336106300354004, &quot;y&quot;: -1.6979659795761108, &quot;IDs&quot;: &quot;ENSG00000233581&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.2385995388031006, &quot;y&quot;: -2.707077741622925, &quot;IDs&quot;: &quot;ENSG00000233817&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.485114812850952, &quot;y&quot;: -3.911430835723877, &quot;IDs&quot;: &quot;ENSG00000233845&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.3477330207824707, &quot;y&quot;: -0.6618938446044922, &quot;IDs&quot;: &quot;ENSG00000234155&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.778023600578308, &quot;y&quot;: -2.3924267292022705, &quot;IDs&quot;: &quot;ENSG00000234362&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.035381317138672, &quot;y&quot;: -1.5314441919326782, &quot;IDs&quot;: &quot;ENSG00000234703&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5839686393737793, &quot;y&quot;: -0.8385144472122192, &quot;IDs&quot;: &quot;ENSG00000234814&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8173680305480957, &quot;y&quot;: -2.9173309803009033, &quot;IDs&quot;: &quot;ENSG00000234859&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7805782556533813, &quot;y&quot;: -2.289821147918701, &quot;IDs&quot;: &quot;ENSG00000235927&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.938288688659668, &quot;y&quot;: -1.9449424743652344, &quot;IDs&quot;: &quot;ENSG00000235947&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8206535577774048, &quot;y&quot;: -2.3264856338500977, &quot;IDs&quot;: &quot;ENSG00000236056&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.721508026123047, &quot;y&quot;: -2.932924509048462, &quot;IDs&quot;: &quot;ENSG00000236094&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.231994152069092, &quot;y&quot;: -1.2634286880493164, &quot;IDs&quot;: &quot;ENSG00000236782&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5304696559906006, &quot;y&quot;: -2.0451884269714355, &quot;IDs&quot;: &quot;ENSG00000236963&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.632188320159912, &quot;y&quot;: -1.1840225458145142, &quot;IDs&quot;: &quot;ENSG00000237015&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.735292434692383, &quot;y&quot;: -1.2438488006591797, &quot;IDs&quot;: &quot;ENSG00000237624&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.107647657394409, &quot;y&quot;: -2.541173219680786, &quot;IDs&quot;: &quot;ENSG00000237864&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.138936758041382, &quot;y&quot;: -2.526639461517334, &quot;IDs&quot;: &quot;ENSG00000237879&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4983201026916504, &quot;y&quot;: -2.347686767578125, &quot;IDs&quot;: &quot;ENSG00000238290&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.6350980997085571, &quot;y&quot;: -2.2828032970428467, &quot;IDs&quot;: &quot;ENSG00000239332&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4453585147857666, &quot;y&quot;: -3.193913221359253, &quot;IDs&quot;: &quot;ENSG00000239590&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.5458180904388428, &quot;y&quot;: -1.4726550579071045, &quot;IDs&quot;: &quot;ENSG00000240541&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.271669387817383, &quot;y&quot;: -2.4084315299987793, &quot;IDs&quot;: &quot;ENSG00000243225&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8535478115081787, &quot;y&quot;: -2.2672719955444336, &quot;IDs&quot;: &quot;ENSG00000244242&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.532496452331543, &quot;y&quot;: -3.8127245903015137, &quot;IDs&quot;: &quot;ENSG00000244300&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8759338855743408, &quot;y&quot;: -3.5636277198791504, &quot;IDs&quot;: &quot;ENSG00000244376&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4943928718566895, &quot;y&quot;: -3.037477970123291, &quot;IDs&quot;: &quot;ENSG00000244945&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.013018250465393, &quot;y&quot;: -0.6661568284034729, &quot;IDs&quot;: &quot;ENSG00000246145&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.265039086341858, &quot;y&quot;: -2.280761241912842, &quot;IDs&quot;: &quot;ENSG00000246308&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2047195434570312, &quot;y&quot;: -2.037808418273926, &quot;IDs&quot;: &quot;ENSG00000248150&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.096896171569824, &quot;y&quot;: -0.679901123046875, &quot;IDs&quot;: &quot;ENSG00000248323&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.688224196434021, &quot;y&quot;: -2.1145808696746826, &quot;IDs&quot;: &quot;ENSG00000248996&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7196968793869019, &quot;y&quot;: -1.7599338293075562, &quot;IDs&quot;: &quot;ENSG00000249237&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4116787910461426, &quot;y&quot;: -1.8759855031967163, &quot;IDs&quot;: &quot;ENSG00000249526&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4552528858184814, &quot;y&quot;: -2.9769887924194336, &quot;IDs&quot;: &quot;ENSG00000253106&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.3011486530303955, &quot;y&quot;: -0.708903431892395, &quot;IDs&quot;: &quot;ENSG00000253161&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.150939702987671, &quot;y&quot;: -0.4099562168121338, &quot;IDs&quot;: &quot;ENSG00000253182&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7934765815734863, &quot;y&quot;: -3.5545337200164795, &quot;IDs&quot;: &quot;ENSG00000253282&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7001867294311523, &quot;y&quot;: -3.6168789863586426, &quot;IDs&quot;: &quot;ENSG00000253584&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5652856826782227, &quot;y&quot;: -0.9674814343452454, &quot;IDs&quot;: &quot;ENSG00000253628&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.3309075832366943, &quot;y&quot;: -2.6311049461364746, &quot;IDs&quot;: &quot;ENSG00000253686&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.579253077507019, &quot;y&quot;: -2.499460220336914, &quot;IDs&quot;: &quot;ENSG00000253958&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.6225836277008057, &quot;y&quot;: -2.9320638179779053, &quot;IDs&quot;: &quot;ENSG00000254038&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.227296829223633, &quot;y&quot;: -1.2758311033248901, &quot;IDs&quot;: &quot;ENSG00000254396&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.00750470161438, &quot;y&quot;: -3.0222480297088623, &quot;IDs&quot;: &quot;ENSG00000254431&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.6598641872406006, &quot;y&quot;: -3.2675607204437256, &quot;IDs&quot;: &quot;ENSG00000254632&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.3750357627868652, &quot;y&quot;: -2.213477611541748, &quot;IDs&quot;: &quot;ENSG00000254842&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.3329355716705322, &quot;y&quot;: -1.9395780563354492, &quot;IDs&quot;: &quot;ENSG00000254887&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.3376705646514893, &quot;y&quot;: -3.779971122741699, &quot;IDs&quot;: &quot;ENSG00000255317&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2763960361480713, &quot;y&quot;: -2.103058099746704, &quot;IDs&quot;: &quot;ENSG00000255398&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5628156661987305, &quot;y&quot;: -1.007269263267517, &quot;IDs&quot;: &quot;ENSG00000255750&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.17016863822937, &quot;y&quot;: -1.4444793462753296, &quot;IDs&quot;: &quot;ENSG00000256196&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1529998779296875, &quot;y&quot;: -1.7867900133132935, &quot;IDs&quot;: &quot;ENSG00000256268&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7335002422332764, &quot;y&quot;: -2.36772084236145, &quot;IDs&quot;: &quot;ENSG00000256540&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2523839473724365, &quot;y&quot;: -2.7663233280181885, &quot;IDs&quot;: &quot;ENSG00000256694&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.805743455886841, &quot;y&quot;: -3.4858272075653076, &quot;IDs&quot;: &quot;ENSG00000257176&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.306601643562317, &quot;y&quot;: -2.3942956924438477, &quot;IDs&quot;: &quot;ENSG00000257839&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.40162992477417, &quot;y&quot;: -2.5433382987976074, &quot;IDs&quot;: &quot;ENSG00000258137&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.3808670043945312, &quot;y&quot;: -3.3410298824310303, &quot;IDs&quot;: &quot;ENSG00000258279&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.3521370887756348, &quot;y&quot;: -1.202080249786377, &quot;IDs&quot;: &quot;ENSG00000258303&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.222285270690918, &quot;y&quot;: -2.2608962059020996, &quot;IDs&quot;: &quot;ENSG00000258602&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.053623676300049, &quot;y&quot;: -3.9253036975860596, &quot;IDs&quot;: &quot;ENSG00000258794&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8105649948120117, &quot;y&quot;: -2.654675245285034, &quot;IDs&quot;: &quot;ENSG00000259230&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4640660285949707, &quot;y&quot;: -2.497490882873535, &quot;IDs&quot;: &quot;ENSG00000259354&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.542557716369629, &quot;y&quot;: -2.6932265758514404, &quot;IDs&quot;: &quot;ENSG00000259523&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4251208305358887, &quot;y&quot;: -4.20059061050415, &quot;IDs&quot;: &quot;ENSG00000259672&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.6366722583770752, &quot;y&quot;: -2.02316951751709, &quot;IDs&quot;: &quot;ENSG00000259712&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.769958734512329, &quot;y&quot;: -3.7028260231018066, &quot;IDs&quot;: &quot;ENSG00000259727&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.9154608249664307, &quot;y&quot;: -1.9020580053329468, &quot;IDs&quot;: &quot;ENSG00000260139&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8645007610321045, &quot;y&quot;: -2.78955078125, &quot;IDs&quot;: &quot;ENSG00000260219&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.5493460893630981, &quot;y&quot;: -2.8858745098114014, &quot;IDs&quot;: &quot;ENSG00000260267&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.160851001739502, &quot;y&quot;: -1.2537685632705688, &quot;IDs&quot;: &quot;ENSG00000260328&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.243891716003418, &quot;y&quot;: -2.127586841583252, &quot;IDs&quot;: &quot;ENSG00000260504&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8358514308929443, &quot;y&quot;: -2.9219789505004883, &quot;IDs&quot;: &quot;ENSG00000260807&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.4699504375457764, &quot;y&quot;: -2.602644920349121, &quot;IDs&quot;: &quot;ENSG00000260903&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.059422016143799, &quot;y&quot;: -3.1119794845581055, &quot;IDs&quot;: &quot;ENSG00000261055&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.0617103576660156, &quot;y&quot;: -2.693467855453491, &quot;IDs&quot;: &quot;ENSG00000261068&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.745246171951294, &quot;y&quot;: -2.6235721111297607, &quot;IDs&quot;: &quot;ENSG00000261116&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.545400619506836, &quot;y&quot;: -2.2406554222106934, &quot;IDs&quot;: &quot;ENSG00000261150&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.1014184951782227, &quot;y&quot;: -2.481973648071289, &quot;IDs&quot;: &quot;ENSG00000261308&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.2100369930267334, &quot;y&quot;: -2.7108538150787354, &quot;IDs&quot;: &quot;ENSG00000261371&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.398622751235962, &quot;y&quot;: -3.5580077171325684, &quot;IDs&quot;: &quot;ENSG00000261594&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.918091297149658, &quot;y&quot;: -2.00748610496521, &quot;IDs&quot;: &quot;ENSG00000261651&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.192542314529419, &quot;y&quot;: -2.466890335083008, &quot;IDs&quot;: &quot;ENSG00000261888&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.530707359313965, &quot;y&quot;: -1.9804085493087769, &quot;IDs&quot;: &quot;ENSG00000262769&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.9952847957611084, &quot;y&quot;: -2.9675703048706055, &quot;IDs&quot;: &quot;ENSG00000263731&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.9446582794189453, &quot;y&quot;: -1.6526600122451782, &quot;IDs&quot;: &quot;ENSG00000265148&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2137227058410645, &quot;y&quot;: -3.725965976715088, &quot;IDs&quot;: &quot;ENSG00000266074&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.899155616760254, &quot;y&quot;: -3.7568111419677734, &quot;IDs&quot;: &quot;ENSG00000267052&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2555720806121826, &quot;y&quot;: -3.1708760261535645, &quot;IDs&quot;: &quot;ENSG00000267056&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.403874158859253, &quot;y&quot;: -2.488178014755249, &quot;IDs&quot;: &quot;ENSG00000267375&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7152248620986938, &quot;y&quot;: -0.6438844799995422, &quot;IDs&quot;: &quot;ENSG00000267475&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.401609182357788, &quot;y&quot;: -4.006888389587402, &quot;IDs&quot;: &quot;ENSG00000267685&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.899379253387451, &quot;y&quot;: -3.4448482990264893, &quot;IDs&quot;: &quot;ENSG00000267733&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.8032435178756714, &quot;y&quot;: -2.788585901260376, &quot;IDs&quot;: &quot;ENSG00000267736&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.558091640472412, &quot;y&quot;: -1.429145336151123, &quot;IDs&quot;: &quot;ENSG00000267801&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.2785215377807617, &quot;y&quot;: -2.540351152420044, &quot;IDs&quot;: &quot;ENSG00000269275&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7378036975860596, &quot;y&quot;: -3.716034412384033, &quot;IDs&quot;: &quot;ENSG00000269976&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.8770485520362854, &quot;y&quot;: -0.10020656138658524, &quot;IDs&quot;: &quot;ENSG00000270096&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.0904324054718018, &quot;y&quot;: -3.2408671379089355, &quot;IDs&quot;: &quot;ENSG00000270607&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.446868896484375, &quot;y&quot;: -1.7723147869110107, &quot;IDs&quot;: &quot;ENSG00000271474&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.760237216949463, &quot;y&quot;: -1.9425960779190063, &quot;IDs&quot;: &quot;ENSG00000272079&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.094303607940674, &quot;y&quot;: -1.797531008720398, &quot;IDs&quot;: &quot;ENSG00000272259&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.399562358856201, &quot;y&quot;: -4.07042932510376, &quot;IDs&quot;: &quot;ENSG00000272636&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.4068275690078735, &quot;y&quot;: -1.7729297876358032, &quot;IDs&quot;: &quot;ENSG00000272825&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.1929547786712646, &quot;y&quot;: -1.5916001796722412, &quot;IDs&quot;: &quot;ENSG00000272841&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.1154305934906006, &quot;y&quot;: -2.1606550216674805, &quot;IDs&quot;: &quot;ENSG00000273108&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.25042724609375, &quot;y&quot;: -1.6028940677642822, &quot;IDs&quot;: &quot;ENSG00000273812&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.3419787883758545, &quot;y&quot;: -3.455047607421875, &quot;IDs&quot;: &quot;ENSG00000274653&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.049973487854004, &quot;y&quot;: -0.8461642861366272, &quot;IDs&quot;: &quot;ENSG00000275108&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.2741321325302124, &quot;y&quot;: -2.415158987045288, &quot;IDs&quot;: &quot;ENSG00000275302&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.9142754077911377, &quot;y&quot;: -1.6785085201263428, &quot;IDs&quot;: &quot;ENSG00000275367&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.3104424476623535, &quot;y&quot;: -4.055514335632324, &quot;IDs&quot;: &quot;ENSG00000275393&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.132638931274414, &quot;y&quot;: -1.967397928237915, &quot;IDs&quot;: &quot;ENSG00000275880&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -0.8056342005729675, &quot;y&quot;: -0.6322357654571533, &quot;IDs&quot;: &quot;ENSG00000276308&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.3898208141326904, &quot;y&quot;: -2.8984694480895996, &quot;IDs&quot;: &quot;ENSG00000276527&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.353469729423523, &quot;y&quot;: -0.30413979291915894, &quot;IDs&quot;: &quot;ENSG00000276953&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.475783348083496, &quot;y&quot;: -2.0392701625823975, &quot;IDs&quot;: &quot;ENSG00000277406&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7328635454177856, &quot;y&quot;: -1.6144517660140991, &quot;IDs&quot;: &quot;ENSG00000277632&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.5653903484344482, &quot;y&quot;: -1.943860650062561, &quot;IDs&quot;: &quot;ENSG00000277718&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.6687848567962646, &quot;y&quot;: -0.8508065938949585, &quot;IDs&quot;: &quot;ENSG00000277734&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.281411647796631, &quot;y&quot;: -2.569108486175537, &quot;IDs&quot;: &quot;ENSG00000277893&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.7994072437286377, &quot;y&quot;: -1.7802151441574097, &quot;IDs&quot;: &quot;ENSG00000278195&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.250415802001953, &quot;y&quot;: -3.232825994491577, &quot;IDs&quot;: &quot;ENSG00000278973&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.2588906288146973, &quot;y&quot;: -2.027299404144287, &quot;IDs&quot;: &quot;ENSG00000278989&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.9206215143203735, &quot;y&quot;: -3.144662857055664, &quot;IDs&quot;: &quot;ENSG00000279118&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.829508662223816, &quot;y&quot;: -2.1849186420440674, &quot;IDs&quot;: &quot;ENSG00000279489&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8600432872772217, &quot;y&quot;: -1.9788637161254883, &quot;IDs&quot;: &quot;ENSG00000279631&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.583454132080078, &quot;y&quot;: -3.1751902103424072, &quot;IDs&quot;: &quot;ENSG00000279633&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.8259570598602295, &quot;y&quot;: -1.7392240762710571, &quot;IDs&quot;: &quot;ENSG00000279739&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.305361032485962, &quot;y&quot;: -4.087274551391602, &quot;IDs&quot;: &quot;ENSG00000279770&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.5514626502990723, &quot;y&quot;: -2.4399633407592773, &quot;IDs&quot;: &quot;ENSG00000279806&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.1018925905227661, &quot;y&quot;: -0.30115988850593567, &quot;IDs&quot;: &quot;ENSG00000279838&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.4710012674331665, &quot;y&quot;: -2.3604772090911865, &quot;IDs&quot;: &quot;ENSG00000279879&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.1341776847839355, &quot;y&quot;: -1.5077743530273438, &quot;IDs&quot;: &quot;ENSG00000280143&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.7881782054901123, &quot;y&quot;: -3.62485408782959, &quot;IDs&quot;: &quot;ENSG00000280587&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.393720865249634, &quot;y&quot;: -2.4263713359832764, &quot;IDs&quot;: &quot;ENSG00000281207&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.001223564147949, &quot;y&quot;: -1.981125831604004, &quot;IDs&quot;: &quot;ENSG00000281832&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.2524030208587646, &quot;y&quot;: -2.774956226348877, &quot;IDs&quot;: &quot;ENSG00000282849&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.237727165222168, &quot;y&quot;: -1.6492674350738525, &quot;IDs&quot;: &quot;ENSG00000283025&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.6742143630981445, &quot;y&quot;: -0.8737335801124573, &quot;IDs&quot;: &quot;ENSG00000283033&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.1382322311401367, &quot;y&quot;: -3.0922226905822754, &quot;IDs&quot;: &quot;ENSG00000283265&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.166619062423706, &quot;y&quot;: -1.3759690523147583, &quot;IDs&quot;: &quot;ENSG00000283267&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.016146183013916, &quot;y&quot;: -1.3479312658309937, &quot;IDs&quot;: &quot;ENSG00000283632&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.8174926042556763, &quot;y&quot;: -1.2796274423599243, &quot;IDs&quot;: &quot;ENSG00000284052&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.137545585632324, &quot;y&quot;: -2.706059694290161, &quot;IDs&quot;: &quot;ENSG00000284713&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 0.3055519759654999, &quot;y&quot;: -0.9310845136642456, &quot;IDs&quot;: &quot;ENSG00000285116&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.218493700027466, &quot;y&quot;: -3.9753689765930176, &quot;IDs&quot;: &quot;ENSG00000285244&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 3.6955089569091797, &quot;y&quot;: -1.5921112298965454, &quot;IDs&quot;: &quot;ENSG00000285623&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.3052502870559692, &quot;y&quot;: -2.6376161575317383, &quot;IDs&quot;: &quot;ENSG00000285802&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.4889729022979736, &quot;y&quot;: -0.548682451248169, &quot;IDs&quot;: &quot;ENSG00000285867&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.6264545917510986, &quot;y&quot;: -1.6835789680480957, &quot;IDs&quot;: &quot;ENSG00000285881&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 1.9415348768234253, &quot;y&quot;: -1.9562482833862305, &quot;IDs&quot;: &quot;ENSG00000285888&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.048841953277588, &quot;y&quot;: -0.6072689890861511, &quot;IDs&quot;: &quot;ENSG00000285966&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.3904621601104736, &quot;y&quot;: -1.8048690557479858, &quot;IDs&quot;: &quot;ENSG00000285980&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -2.6762382984161377, &quot;y&quot;: -1.837265133857727, &quot;IDs&quot;: &quot;ENSG00000038427&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2.631704330444336, &quot;y&quot;: -4.115036487579346, &quot;IDs&quot;: &quot;ENSG00000182986&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -3.9918482303619385, &quot;y&quot;: -5.852340221405029, &quot;IDs&quot;: &quot;ENSG00000250271&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -0.8950082659721375, &quot;y&quot;: -1.0506662130355835, &quot;IDs&quot;: &quot;ENSG00000251600&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: -1.6350152492523193, &quot;y&quot;: -1.507297396659851, &quot;IDs&quot;: &quot;ENSG00000273345&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#4fff00&quot;, &quot;name&quot;: &quot;cluster_02&quot;}, {&quot;data&quot;: [{&quot;x&quot;: -0.9913957715034485, &quot;y&quot;: -4.859630107879639, &quot;IDs&quot;: &quot;ENSG00000078237&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.898958206176758, &quot;y&quot;: 2.5292351245880127, &quot;IDs&quot;: &quot;ENSG00000100784&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.4928526878356934, &quot;y&quot;: -2.9026987552642822, &quot;IDs&quot;: &quot;ENSG00000117707&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.5546021461486816, &quot;y&quot;: -3.9546968936920166, &quot;IDs&quot;: &quot;ENSG00000120071&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.0885419845581055, &quot;y&quot;: -4.290746688842773, &quot;IDs&quot;: &quot;ENSG00000139668&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.011242437176406384, &quot;y&quot;: -8.987131118774414, &quot;IDs&quot;: &quot;ENSG00000143190&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.954641103744507, &quot;y&quot;: -4.458725452423096, &quot;IDs&quot;: &quot;ENSG00000143479&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.14570197463035583, &quot;y&quot;: -6.696002960205078, &quot;IDs&quot;: &quot;ENSG00000163806&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.958282947540283, &quot;y&quot;: -4.0659308433532715, &quot;IDs&quot;: &quot;ENSG00000171094&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.0610803365707397, &quot;y&quot;: -5.462924480438232, &quot;IDs&quot;: &quot;ENSG00000172748&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.2120041847229004, &quot;y&quot;: -4.0306196212768555, &quot;IDs&quot;: &quot;ENSG00000176896&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.336118221282959, &quot;y&quot;: -2.0648128986358643, &quot;IDs&quot;: &quot;ENSG00000178440&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.0643829107284546, &quot;y&quot;: -6.2743754386901855, &quot;IDs&quot;: &quot;ENSG00000183785&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.543764352798462, &quot;y&quot;: -5.281023979187012, &quot;IDs&quot;: &quot;ENSG00000197608&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2594692707061768, &quot;y&quot;: -3.6026062965393066, &quot;IDs&quot;: &quot;ENSG00000199237&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.8296656608581543, &quot;y&quot;: -3.1178224086761475, &quot;IDs&quot;: &quot;ENSG00000203756&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.647164821624756, &quot;y&quot;: -6.662968158721924, &quot;IDs&quot;: &quot;ENSG00000204946&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.3896307945251465, &quot;y&quot;: -1.8212175369262695, &quot;IDs&quot;: &quot;ENSG00000206885&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.751049280166626, &quot;y&quot;: -4.421903610229492, &quot;IDs&quot;: &quot;ENSG00000224967&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.0187718868255615, &quot;y&quot;: -6.1888747215271, &quot;IDs&quot;: &quot;ENSG00000227014&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.380413770675659, &quot;y&quot;: -4.098095893859863, &quot;IDs&quot;: &quot;ENSG00000228201&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.4464832544326782, &quot;y&quot;: -4.867398738861084, &quot;IDs&quot;: &quot;ENSG00000228817&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.213803768157959, &quot;y&quot;: -6.410787105560303, &quot;IDs&quot;: &quot;ENSG00000253522&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.689986228942871, &quot;y&quot;: -2.490790367126465, &quot;IDs&quot;: &quot;ENSG00000257246&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.243775367736816, &quot;y&quot;: -1.5089024305343628, &quot;IDs&quot;: &quot;ENSG00000261659&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.5366475582122803, &quot;y&quot;: -2.2060885429382324, &quot;IDs&quot;: &quot;ENSG00000267598&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.155752182006836, &quot;y&quot;: -4.561460971832275, &quot;IDs&quot;: &quot;ENSG00000268333&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.3787972927093506, &quot;y&quot;: -4.331692695617676, &quot;IDs&quot;: &quot;ENSG00000284977&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1.0879487991333008, &quot;y&quot;: -2.21990704536438, &quot;IDs&quot;: &quot;ENSG00000285721&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.44096338748931885, &quot;y&quot;: -7.843434810638428, &quot;IDs&quot;: &quot;ENSG00000116652&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.7804797887802124, &quot;y&quot;: -8.086624145507812, &quot;IDs&quot;: &quot;ENSG00000120256&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1.1529477834701538, &quot;y&quot;: -6.900590896606445, &quot;IDs&quot;: &quot;ENSG00000120868&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.1453559696674347, &quot;y&quot;: -6.7250142097473145, &quot;IDs&quot;: &quot;ENSG00000121931&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.20203644037246704, &quot;y&quot;: -7.880917072296143, &quot;IDs&quot;: &quot;ENSG00000133624&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.590823233127594, &quot;y&quot;: -6.912104606628418, &quot;IDs&quot;: &quot;ENSG00000145428&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.2668111324310303, &quot;y&quot;: -7.7902326583862305, &quot;IDs&quot;: &quot;ENSG00000146859&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.9764935374259949, &quot;y&quot;: -7.463912487030029, &quot;IDs&quot;: &quot;ENSG00000160401&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.10321050137281418, &quot;y&quot;: -7.254783630371094, &quot;IDs&quot;: &quot;ENSG00000162415&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1.3850321769714355, &quot;y&quot;: -7.789558410644531, &quot;IDs&quot;: &quot;ENSG00000163694&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.8389940857887268, &quot;y&quot;: -7.650270938873291, &quot;IDs&quot;: &quot;ENSG00000164266&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.5651898980140686, &quot;y&quot;: -6.773935317993164, &quot;IDs&quot;: &quot;ENSG00000164796&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.24133843183517456, &quot;y&quot;: -7.240610599517822, &quot;IDs&quot;: &quot;ENSG00000166801&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.07712376117706299, &quot;y&quot;: -7.100776195526123, &quot;IDs&quot;: &quot;ENSG00000184635&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.21524176001548767, &quot;y&quot;: -6.631649971008301, &quot;IDs&quot;: &quot;ENSG00000185432&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1.5904507637023926, &quot;y&quot;: -6.980036735534668, &quot;IDs&quot;: &quot;ENSG00000188738&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.12147008627653122, &quot;y&quot;: -7.765173435211182, &quot;IDs&quot;: &quot;ENSG00000188778&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.7052856087684631, &quot;y&quot;: -7.491201400756836, &quot;IDs&quot;: &quot;ENSG00000188981&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1.590293526649475, &quot;y&quot;: -8.051993370056152, &quot;IDs&quot;: &quot;ENSG00000189348&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.4506660997867584, &quot;y&quot;: -7.894410133361816, &quot;IDs&quot;: &quot;ENSG00000219747&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4.230975151062012, &quot;y&quot;: -9.674724578857422, &quot;IDs&quot;: &quot;ENSG00000224027&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.08941985666751862, &quot;y&quot;: -8.798107147216797, &quot;IDs&quot;: &quot;ENSG00000224505&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.11759732663631439, &quot;y&quot;: -6.955911159515381, &quot;IDs&quot;: &quot;ENSG00000225096&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.7117673754692078, &quot;y&quot;: -8.195517539978027, &quot;IDs&quot;: &quot;ENSG00000229401&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.6485592722892761, &quot;y&quot;: -7.104583263397217, &quot;IDs&quot;: &quot;ENSG00000229657&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.5111615061759949, &quot;y&quot;: -7.4098124504089355, &quot;IDs&quot;: &quot;ENSG00000230471&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.19409054517745972, &quot;y&quot;: -6.755451679229736, &quot;IDs&quot;: &quot;ENSG00000240996&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.27999669313430786, &quot;y&quot;: -7.2747273445129395, &quot;IDs&quot;: &quot;ENSG00000243811&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.994507908821106, &quot;y&quot;: -5.110461711883545, &quot;IDs&quot;: &quot;ENSG00000244301&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.3524620831012726, &quot;y&quot;: -8.213433265686035, &quot;IDs&quot;: &quot;ENSG00000248362&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.7578961253166199, &quot;y&quot;: -7.794188022613525, &quot;IDs&quot;: &quot;ENSG00000248858&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.1454414278268814, &quot;y&quot;: -7.076551914215088, &quot;IDs&quot;: &quot;ENSG00000249650&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.3893071413040161, &quot;y&quot;: -7.156675815582275, &quot;IDs&quot;: &quot;ENSG00000249898&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.9573916792869568, &quot;y&quot;: -7.976924419403076, &quot;IDs&quot;: &quot;ENSG00000250371&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.31297141313552856, &quot;y&quot;: -7.849546909332275, &quot;IDs&quot;: &quot;ENSG00000251179&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.22875548899173737, &quot;y&quot;: -8.431136131286621, &quot;IDs&quot;: &quot;ENSG00000254815&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.13490928709506989, &quot;y&quot;: -7.319456100463867, &quot;IDs&quot;: &quot;ENSG00000256650&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.2477368116378784, &quot;y&quot;: -6.128036022186279, &quot;IDs&quot;: &quot;ENSG00000258733&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1.3271806240081787, &quot;y&quot;: -8.109518051147461, &quot;IDs&quot;: &quot;ENSG00000260158&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.0679821968078613, &quot;y&quot;: -6.52545166015625, &quot;IDs&quot;: &quot;ENSG00000261599&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.7994490265846252, &quot;y&quot;: -2.82232666015625, &quot;IDs&quot;: &quot;ENSG00000265480&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.38316282629966736, &quot;y&quot;: -7.861607551574707, &quot;IDs&quot;: &quot;ENSG00000269938&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.9616974592208862, &quot;y&quot;: -7.377871990203857, &quot;IDs&quot;: &quot;ENSG00000271395&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.937559127807617, &quot;y&quot;: -6.661801338195801, &quot;IDs&quot;: &quot;ENSG00000181577&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.7806469202041626, &quot;y&quot;: -6.619302272796631, &quot;IDs&quot;: &quot;ENSG00000253669&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.1377153396606445, &quot;y&quot;: -5.469082832336426, &quot;IDs&quot;: &quot;ENSG00000007314&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.423215627670288, &quot;y&quot;: -6.598779201507568, &quot;IDs&quot;: &quot;ENSG00000019169&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.2539892196655273, &quot;y&quot;: -6.173309326171875, &quot;IDs&quot;: &quot;ENSG00000019582&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.216153621673584, &quot;y&quot;: -5.902109622955322, &quot;IDs&quot;: &quot;ENSG00000042832&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.9856197834014893, &quot;y&quot;: -6.4209160804748535, &quot;IDs&quot;: &quot;ENSG00000047936&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.6344528198242188, &quot;y&quot;: -6.584632396697998, &quot;IDs&quot;: &quot;ENSG00000052344&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.921973466873169, &quot;y&quot;: -4.11503791809082, &quot;IDs&quot;: &quot;ENSG00000066923&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.6992838382720947, &quot;y&quot;: -3.8625237941741943, &quot;IDs&quot;: &quot;ENSG00000067208&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.637160062789917, &quot;y&quot;: -6.526761054992676, &quot;IDs&quot;: &quot;ENSG00000069122&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.133881092071533, &quot;y&quot;: -5.0536580085754395, &quot;IDs&quot;: &quot;ENSG00000071991&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.331160545349121, &quot;y&quot;: -5.461621284484863, &quot;IDs&quot;: &quot;ENSG00000073734&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.0052337646484375, &quot;y&quot;: -5.294984817504883, &quot;IDs&quot;: &quot;ENSG00000075223&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.6089297533035278, &quot;y&quot;: -6.239304542541504, &quot;IDs&quot;: &quot;ENSG00000078098&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.0237884521484375, &quot;y&quot;: -5.906803607940674, &quot;IDs&quot;: &quot;ENSG00000080166&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.7624205350875854, &quot;y&quot;: -6.685544490814209, &quot;IDs&quot;: &quot;ENSG00000081148&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.681422472000122, &quot;y&quot;: -5.011547565460205, &quot;IDs&quot;: &quot;ENSG00000081320&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.7211010456085205, &quot;y&quot;: -6.575577735900879, &quot;IDs&quot;: &quot;ENSG00000087303&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.559443712234497, &quot;y&quot;: -6.262831687927246, &quot;IDs&quot;: &quot;ENSG00000088340&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.7640453577041626, &quot;y&quot;: -5.5506591796875, &quot;IDs&quot;: &quot;ENSG00000089163&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.101940631866455, &quot;y&quot;: -6.118188381195068, &quot;IDs&quot;: &quot;ENSG00000091136&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.630995988845825, &quot;y&quot;: -5.239739894866943, &quot;IDs&quot;: &quot;ENSG00000091536&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.018866062164307, &quot;y&quot;: -5.166189193725586, &quot;IDs&quot;: &quot;ENSG00000091879&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.4539237022399902, &quot;y&quot;: -5.036426544189453, &quot;IDs&quot;: &quot;ENSG00000095059&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.120065689086914, &quot;y&quot;: -6.299734115600586, &quot;IDs&quot;: &quot;ENSG00000099937&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.0685392618179321, &quot;y&quot;: -4.665522575378418, &quot;IDs&quot;: &quot;ENSG00000100100&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.3901097774505615, &quot;y&quot;: -6.149235725402832, &quot;IDs&quot;: &quot;ENSG00000100147&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.8539543747901917, &quot;y&quot;: -6.657135486602783, &quot;IDs&quot;: &quot;ENSG00000100197&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.8878951072692871, &quot;y&quot;: -8.0687837600708, &quot;IDs&quot;: &quot;ENSG00000100429&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.598881959915161, &quot;y&quot;: -5.802684783935547, &quot;IDs&quot;: &quot;ENSG00000100453&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.8567099571228027, &quot;y&quot;: -5.6368818283081055, &quot;IDs&quot;: &quot;ENSG00000100918&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.0518083572387695, &quot;y&quot;: -4.172318935394287, &quot;IDs&quot;: &quot;ENSG00000101138&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.8276493549346924, &quot;y&quot;: -6.176521301269531, &quot;IDs&quot;: &quot;ENSG00000101197&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.8102316856384277, &quot;y&quot;: -6.22837495803833, &quot;IDs&quot;: &quot;ENSG00000101276&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1978297233581543, &quot;y&quot;: -5.8568854331970215, &quot;IDs&quot;: &quot;ENSG00000101333&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.6484920978546143, &quot;y&quot;: -4.987382411956787, &quot;IDs&quot;: &quot;ENSG00000101447&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.9326510429382324, &quot;y&quot;: -6.267612457275391, &quot;IDs&quot;: &quot;ENSG00000101850&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.6480844020843506, &quot;y&quot;: -5.345937728881836, &quot;IDs&quot;: &quot;ENSG00000102908&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.284482955932617, &quot;y&quot;: -6.475827693939209, &quot;IDs&quot;: &quot;ENSG00000103740&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.9185338020324707, &quot;y&quot;: -4.85935640335083, &quot;IDs&quot;: &quot;ENSG00000104059&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.626040458679199, &quot;y&quot;: -6.303304195404053, &quot;IDs&quot;: &quot;ENSG00000105443&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1311681270599365, &quot;y&quot;: -6.449157238006592, &quot;IDs&quot;: &quot;ENSG00000105737&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.8407797813415527, &quot;y&quot;: -4.3824028968811035, &quot;IDs&quot;: &quot;ENSG00000105851&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.3995022773742676, &quot;y&quot;: -6.391504287719727, &quot;IDs&quot;: &quot;ENSG00000105929&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.6538236141204834, &quot;y&quot;: -6.482259273529053, &quot;IDs&quot;: &quot;ENSG00000107249&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.078383207321167, &quot;y&quot;: -5.313667297363281, &quot;IDs&quot;: &quot;ENSG00000108511&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.277069568634033, &quot;y&quot;: -5.876368045806885, &quot;IDs&quot;: &quot;ENSG00000109046&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.3987908363342285, &quot;y&quot;: -4.88900089263916, &quot;IDs&quot;: &quot;ENSG00000109920&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.4078516960144043, &quot;y&quot;: -5.2974419593811035, &quot;IDs&quot;: &quot;ENSG00000110031&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.094233512878418, &quot;y&quot;: -5.401186943054199, &quot;IDs&quot;: &quot;ENSG00000110077&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.721733331680298, &quot;y&quot;: -5.777795314788818, &quot;IDs&quot;: &quot;ENSG00000110723&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1974289417266846, &quot;y&quot;: -4.30784797668457, &quot;IDs&quot;: &quot;ENSG00000111203&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.133132219314575, &quot;y&quot;: -5.320826053619385, &quot;IDs&quot;: &quot;ENSG00000111665&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.33131229877471924, &quot;y&quot;: -6.853199005126953, &quot;IDs&quot;: &quot;ENSG00000111846&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.7136335372924805, &quot;y&quot;: -4.8200459480285645, &quot;IDs&quot;: &quot;ENSG00000112137&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.48122239112854, &quot;y&quot;: -6.36362886428833, &quot;IDs&quot;: &quot;ENSG00000114270&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.3118343353271484, &quot;y&quot;: -4.5896406173706055, &quot;IDs&quot;: &quot;ENSG00000114805&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.9236574172973633, &quot;y&quot;: -4.630063056945801, &quot;IDs&quot;: &quot;ENSG00000114857&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2814507484436035, &quot;y&quot;: -5.963629245758057, &quot;IDs&quot;: &quot;ENSG00000115085&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.9449524879455566, &quot;y&quot;: -5.938686847686768, &quot;IDs&quot;: &quot;ENSG00000115705&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.905707597732544, &quot;y&quot;: -7.7949090003967285, &quot;IDs&quot;: &quot;ENSG00000117010&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.415660858154297, &quot;y&quot;: -4.796568870544434, &quot;IDs&quot;: &quot;ENSG00000117139&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.932980537414551, &quot;y&quot;: -5.8653059005737305, &quot;IDs&quot;: &quot;ENSG00000117148&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.3096119165420532, &quot;y&quot;: -5.9484758377075195, &quot;IDs&quot;: &quot;ENSG00000119917&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.4026238918304443, &quot;y&quot;: -5.842285633087158, &quot;IDs&quot;: &quot;ENSG00000120075&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.346428871154785, &quot;y&quot;: -6.172196865081787, &quot;IDs&quot;: &quot;ENSG00000120279&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.142756938934326, &quot;y&quot;: -5.261377811431885, &quot;IDs&quot;: &quot;ENSG00000121716&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.838672161102295, &quot;y&quot;: -5.912727355957031, &quot;IDs&quot;: &quot;ENSG00000123496&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.0731804370880127, &quot;y&quot;: -6.36870002746582, &quot;IDs&quot;: &quot;ENSG00000123610&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.8285460472106934, &quot;y&quot;: -3.190101385116577, &quot;IDs&quot;: &quot;ENSG00000125266&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.7299611568450928, &quot;y&quot;: -4.71602725982666, &quot;IDs&quot;: &quot;ENSG00000125810&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.464438438415527, &quot;y&quot;: -5.762503147125244, &quot;IDs&quot;: &quot;ENSG00000126010&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.2847620248794556, &quot;y&quot;: -6.0894083976745605, &quot;IDs&quot;: &quot;ENSG00000126785&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.259068489074707, &quot;y&quot;: -5.727367401123047, &quot;IDs&quot;: &quot;ENSG00000129538&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.3251219987869263, &quot;y&quot;: -5.283106327056885, &quot;IDs&quot;: &quot;ENSG00000129749&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.3159425258636475, &quot;y&quot;: -5.474369049072266, &quot;IDs&quot;: &quot;ENSG00000129991&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.5456328988075256, &quot;y&quot;: -6.785552024841309, &quot;IDs&quot;: &quot;ENSG00000130055&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.7191468477249146, &quot;y&quot;: -5.9681782722473145, &quot;IDs&quot;: &quot;ENSG00000130653&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.287807464599609, &quot;y&quot;: -4.465078353881836, &quot;IDs&quot;: &quot;ENSG00000131018&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.4534459114074707, &quot;y&quot;: -4.773003578186035, &quot;IDs&quot;: &quot;ENSG00000131203&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.7614595890045166, &quot;y&quot;: -5.088706970214844, &quot;IDs&quot;: &quot;ENSG00000131398&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2353744506835938, &quot;y&quot;: -6.39730167388916, &quot;IDs&quot;: &quot;ENSG00000131747&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.3746941089630127, &quot;y&quot;: -5.81805944442749, &quot;IDs&quot;: &quot;ENSG00000132932&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.6695854663848877, &quot;y&quot;: -5.038884162902832, &quot;IDs&quot;: &quot;ENSG00000133110&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.5252857208251953, &quot;y&quot;: -4.822122573852539, &quot;IDs&quot;: &quot;ENSG00000134186&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.8878141641616821, &quot;y&quot;: -5.946427822113037, &quot;IDs&quot;: &quot;ENSG00000135502&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.3815019130706787, &quot;y&quot;: -6.994107246398926, &quot;IDs&quot;: &quot;ENSG00000135747&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.0832345485687256, &quot;y&quot;: -5.691311359405518, &quot;IDs&quot;: &quot;ENSG00000136231&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.580925226211548, &quot;y&quot;: -4.1377363204956055, &quot;IDs&quot;: &quot;ENSG00000136535&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.1705193519592285, &quot;y&quot;: -5.149097919464111, &quot;IDs&quot;: &quot;ENSG00000137098&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.8955190181732178, &quot;y&quot;: -6.529082775115967, &quot;IDs&quot;: &quot;ENSG00000137877&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1535894870758057, &quot;y&quot;: -6.311201095581055, &quot;IDs&quot;: &quot;ENSG00000137959&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.6163661479949951, &quot;y&quot;: -5.2576003074646, &quot;IDs&quot;: &quot;ENSG00000138079&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1713138818740845, &quot;y&quot;: -6.176705360412598, &quot;IDs&quot;: &quot;ENSG00000138161&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.633974552154541, &quot;y&quot;: -6.126379489898682, &quot;IDs&quot;: &quot;ENSG00000138435&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.7792413234710693, &quot;y&quot;: -5.9154558181762695, &quot;IDs&quot;: &quot;ENSG00000138615&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.860063076019287, &quot;y&quot;: -6.04055643081665, &quot;IDs&quot;: &quot;ENSG00000138755&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1875734329223633, &quot;y&quot;: -4.834680080413818, &quot;IDs&quot;: &quot;ENSG00000139151&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.8746497631073, &quot;y&quot;: -5.380941867828369, &quot;IDs&quot;: &quot;ENSG00000139364&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.5173732042312622, &quot;y&quot;: -6.901979446411133, &quot;IDs&quot;: &quot;ENSG00000139508&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.353878974914551, &quot;y&quot;: -5.961600303649902, &quot;IDs&quot;: &quot;ENSG00000139679&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.751795768737793, &quot;y&quot;: -4.837743759155273, &quot;IDs&quot;: &quot;ENSG00000140451&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.9765498638153076, &quot;y&quot;: -5.489174842834473, &quot;IDs&quot;: &quot;ENSG00000140534&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.0897932052612305, &quot;y&quot;: -5.954914093017578, &quot;IDs&quot;: &quot;ENSG00000142632&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.37215256690979, &quot;y&quot;: -6.401318550109863, &quot;IDs&quot;: &quot;ENSG00000143473&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.921581506729126, &quot;y&quot;: -4.895029067993164, &quot;IDs&quot;: &quot;ENSG00000144214&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.760977029800415, &quot;y&quot;: -5.385259628295898, &quot;IDs&quot;: &quot;ENSG00000144285&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.8917176723480225, &quot;y&quot;: -5.949375629425049, &quot;IDs&quot;: &quot;ENSG00000144644&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.3492426872253418, &quot;y&quot;: -5.140280723571777, &quot;IDs&quot;: &quot;ENSG00000145241&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.950244665145874, &quot;y&quot;: -6.407926082611084, &quot;IDs&quot;: &quot;ENSG00000146166&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.875776529312134, &quot;y&quot;: -6.502850532531738, &quot;IDs&quot;: &quot;ENSG00000146469&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.0740222930908203, &quot;y&quot;: -6.3712921142578125, &quot;IDs&quot;: &quot;ENSG00000147206&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.657837390899658, &quot;y&quot;: -6.026140213012695, &quot;IDs&quot;: &quot;ENSG00000147437&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.145703315734863, &quot;y&quot;: -6.283977508544922, &quot;IDs&quot;: &quot;ENSG00000147689&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.321373701095581, &quot;y&quot;: -5.949409484863281, &quot;IDs&quot;: &quot;ENSG00000148288&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.058025360107422, &quot;y&quot;: -6.187675476074219, &quot;IDs&quot;: &quot;ENSG00000148824&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.307438611984253, &quot;y&quot;: -5.083236217498779, &quot;IDs&quot;: &quot;ENSG00000149328&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.8802244663238525, &quot;y&quot;: -5.778146743774414, &quot;IDs&quot;: &quot;ENSG00000149503&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.4073585271835327, &quot;y&quot;: -4.817811965942383, &quot;IDs&quot;: &quot;ENSG00000151006&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.712977170944214, &quot;y&quot;: -5.112627029418945, &quot;IDs&quot;: &quot;ENSG00000152583&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.05828332901001, &quot;y&quot;: -6.296576976776123, &quot;IDs&quot;: &quot;ENSG00000152592&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.0986440181732178, &quot;y&quot;: -5.383886337280273, &quot;IDs&quot;: &quot;ENSG00000152689&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1521005630493164, &quot;y&quot;: -5.0845255851745605, &quot;IDs&quot;: &quot;ENSG00000153253&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.823054313659668, &quot;y&quot;: -4.856377124786377, &quot;IDs&quot;: &quot;ENSG00000154451&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1250211000442505, &quot;y&quot;: -6.334702014923096, &quot;IDs&quot;: &quot;ENSG00000156687&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.079538345336914, &quot;y&quot;: -6.225757598876953, &quot;IDs&quot;: &quot;ENSG00000156920&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.8309566974639893, &quot;y&quot;: -5.317326068878174, &quot;IDs&quot;: &quot;ENSG00000158352&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.9722812175750732, &quot;y&quot;: -5.387048721313477, &quot;IDs&quot;: &quot;ENSG00000158486&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.4978630542755127, &quot;y&quot;: -5.206600189208984, &quot;IDs&quot;: &quot;ENSG00000160963&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.0019443035125732, &quot;y&quot;: -6.667603969573975, &quot;IDs&quot;: &quot;ENSG00000162004&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.4707212448120117, &quot;y&quot;: -5.264865875244141, &quot;IDs&quot;: &quot;ENSG00000162063&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.5141154527664185, &quot;y&quot;: -5.462029457092285, &quot;IDs&quot;: &quot;ENSG00000162222&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.8083250522613525, &quot;y&quot;: -4.588301181793213, &quot;IDs&quot;: &quot;ENSG00000162419&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.394972801208496, &quot;y&quot;: -6.490250110626221, &quot;IDs&quot;: &quot;ENSG00000162591&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.347859263420105, &quot;y&quot;: -6.154575824737549, &quot;IDs&quot;: &quot;ENSG00000162779&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.088447093963623, &quot;y&quot;: -6.263367652893066, &quot;IDs&quot;: &quot;ENSG00000163131&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.7225348949432373, &quot;y&quot;: -6.507483959197998, &quot;IDs&quot;: &quot;ENSG00000163207&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.223687648773193, &quot;y&quot;: -4.066843032836914, &quot;IDs&quot;: &quot;ENSG00000163297&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.9317989349365234, &quot;y&quot;: -5.4962568283081055, &quot;IDs&quot;: &quot;ENSG00000163518&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1557906866073608, &quot;y&quot;: -5.413778305053711, &quot;IDs&quot;: &quot;ENSG00000163611&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.5774855613708496, &quot;y&quot;: -4.313568592071533, &quot;IDs&quot;: &quot;ENSG00000164048&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.219059467315674, &quot;y&quot;: -4.465925693511963, &quot;IDs&quot;: &quot;ENSG00000164283&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.2182977199554443, &quot;y&quot;: -4.763455390930176, &quot;IDs&quot;: &quot;ENSG00000164309&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.8807876110076904, &quot;y&quot;: -6.238083362579346, &quot;IDs&quot;: &quot;ENSG00000165124&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1686441898345947, &quot;y&quot;: -6.152393341064453, &quot;IDs&quot;: &quot;ENSG00000165495&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.181985855102539, &quot;y&quot;: -6.163658618927002, &quot;IDs&quot;: &quot;ENSG00000165799&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2234978675842285, &quot;y&quot;: -5.694202899932861, &quot;IDs&quot;: &quot;ENSG00000166104&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.3794450759887695, &quot;y&quot;: -6.09134578704834, &quot;IDs&quot;: &quot;ENSG00000166250&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.041434865444898605, &quot;y&quot;: -6.075538635253906, &quot;IDs&quot;: &quot;ENSG00000166343&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.162747383117676, &quot;y&quot;: -5.851775169372559, &quot;IDs&quot;: &quot;ENSG00000166351&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.9750969409942627, &quot;y&quot;: -4.474296569824219, &quot;IDs&quot;: &quot;ENSG00000166483&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.6388559341430664, &quot;y&quot;: -6.357687950134277, &quot;IDs&quot;: &quot;ENSG00000167355&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2553510665893555, &quot;y&quot;: -6.241652965545654, &quot;IDs&quot;: &quot;ENSG00000167676&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.6201352477073669, &quot;y&quot;: -6.622663974761963, &quot;IDs&quot;: &quot;ENSG00000168918&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.98379385471344, &quot;y&quot;: -4.507936477661133, &quot;IDs&quot;: &quot;ENSG00000169914&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.22757843136787415, &quot;y&quot;: -7.077459335327148, &quot;IDs&quot;: &quot;ENSG00000169964&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.887326240539551, &quot;y&quot;: -5.869338035583496, &quot;IDs&quot;: &quot;ENSG00000170006&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.760974884033203, &quot;y&quot;: -4.892510890960693, &quot;IDs&quot;: &quot;ENSG00000170044&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.3590896129608154, &quot;y&quot;: -5.616719722747803, &quot;IDs&quot;: &quot;ENSG00000170540&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1158336400985718, &quot;y&quot;: -6.382791042327881, &quot;IDs&quot;: &quot;ENSG00000170703&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.253435134887695, &quot;y&quot;: -5.491206169128418, &quot;IDs&quot;: &quot;ENSG00000170925&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.9641151428222656, &quot;y&quot;: -5.557047367095947, &quot;IDs&quot;: &quot;ENSG00000171295&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.8346045613288879, &quot;y&quot;: -6.531922817230225, &quot;IDs&quot;: &quot;ENSG00000171405&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1701016426086426, &quot;y&quot;: -5.246116638183594, &quot;IDs&quot;: &quot;ENSG00000171483&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.6075140237808228, &quot;y&quot;: -5.8950042724609375, &quot;IDs&quot;: &quot;ENSG00000172073&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.010026202537119389, &quot;y&quot;: -6.5302934646606445, &quot;IDs&quot;: &quot;ENSG00000172350&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.4857810735702515, &quot;y&quot;: -6.392482280731201, &quot;IDs&quot;: &quot;ENSG00000172432&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.981501579284668, &quot;y&quot;: -6.258299350738525, &quot;IDs&quot;: &quot;ENSG00000172575&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.429409384727478, &quot;y&quot;: -4.120978355407715, &quot;IDs&quot;: &quot;ENSG00000172667&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.6851516962051392, &quot;y&quot;: -6.011587142944336, &quot;IDs&quot;: &quot;ENSG00000172771&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.9788246154785156, &quot;y&quot;: -5.8476362228393555, &quot;IDs&quot;: &quot;ENSG00000172824&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.580990791320801, &quot;y&quot;: -5.386362075805664, &quot;IDs&quot;: &quot;ENSG00000172901&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.2617905139923096, &quot;y&quot;: -5.131987571716309, &quot;IDs&quot;: &quot;ENSG00000173230&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.4785921573638916, &quot;y&quot;: -4.934360980987549, &quot;IDs&quot;: &quot;ENSG00000173597&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.049685001373291, &quot;y&quot;: -4.756735324859619, &quot;IDs&quot;: &quot;ENSG00000174123&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.5151584148406982, &quot;y&quot;: -5.117897987365723, &quot;IDs&quot;: &quot;ENSG00000174125&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1619817018508911, &quot;y&quot;: -6.105712890625, &quot;IDs&quot;: &quot;ENSG00000174353&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.5246008634567261, &quot;y&quot;: -6.01967191696167, &quot;IDs&quot;: &quot;ENSG00000174483&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.5349950790405273, &quot;y&quot;: -4.905755996704102, &quot;IDs&quot;: &quot;ENSG00000174844&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.6100966930389404, &quot;y&quot;: -6.500705242156982, &quot;IDs&quot;: &quot;ENSG00000175063&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.6949503421783447, &quot;y&quot;: -4.873631000518799, &quot;IDs&quot;: &quot;ENSG00000176136&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.5049149990081787, &quot;y&quot;: -6.238836765289307, &quot;IDs&quot;: &quot;ENSG00000176771&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.934903383255005, &quot;y&quot;: -5.564176559448242, &quot;IDs&quot;: &quot;ENSG00000177426&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.374639511108398, &quot;y&quot;: -6.310439586639404, &quot;IDs&quot;: &quot;ENSG00000178217&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.080101490020752, &quot;y&quot;: -5.108236312866211, &quot;IDs&quot;: &quot;ENSG00000179111&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.980258822441101, &quot;y&quot;: -5.643727779388428, &quot;IDs&quot;: &quot;ENSG00000181085&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.80942964553833, &quot;y&quot;: -6.3370161056518555, &quot;IDs&quot;: &quot;ENSG00000181333&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.0695903301239014, &quot;y&quot;: -5.383944511413574, &quot;IDs&quot;: &quot;ENSG00000181800&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.754210948944092, &quot;y&quot;: -6.018867015838623, &quot;IDs&quot;: &quot;ENSG00000182168&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.5805962085723877, &quot;y&quot;: -6.429996967315674, &quot;IDs&quot;: &quot;ENSG00000182230&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.472740888595581, &quot;y&quot;: -4.469664096832275, &quot;IDs&quot;: &quot;ENSG00000182310&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.4666860103607178, &quot;y&quot;: -5.276194095611572, &quot;IDs&quot;: &quot;ENSG00000182481&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.9995486736297607, &quot;y&quot;: -5.666782379150391, &quot;IDs&quot;: &quot;ENSG00000183023&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.057365894317627, &quot;y&quot;: -4.97760009765625, &quot;IDs&quot;: &quot;ENSG00000183206&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.4724236726760864, &quot;y&quot;: -5.924464225769043, &quot;IDs&quot;: &quot;ENSG00000183251&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.267265796661377, &quot;y&quot;: -6.212808132171631, &quot;IDs&quot;: &quot;ENSG00000183397&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.963404655456543, &quot;y&quot;: -5.748127460479736, &quot;IDs&quot;: &quot;ENSG00000183729&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.496241569519043, &quot;y&quot;: -4.799943447113037, &quot;IDs&quot;: &quot;ENSG00000184374&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.9344293475151062, &quot;y&quot;: -6.587465763092041, &quot;IDs&quot;: &quot;ENSG00000184465&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.0272552967071533, &quot;y&quot;: -6.572489261627197, &quot;IDs&quot;: &quot;ENSG00000185186&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.4801059663295746, &quot;y&quot;: -6.59824275970459, &quot;IDs&quot;: &quot;ENSG00000185615&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.424642562866211, &quot;y&quot;: -5.547430515289307, &quot;IDs&quot;: &quot;ENSG00000185924&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.2077348679304123, &quot;y&quot;: -6.523112773895264, &quot;IDs&quot;: &quot;ENSG00000186204&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.294175386428833, &quot;y&quot;: -6.3659987449646, &quot;IDs&quot;: &quot;ENSG00000186529&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.403634786605835, &quot;y&quot;: -5.497404098510742, &quot;IDs&quot;: &quot;ENSG00000187240&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.0630035400390625, &quot;y&quot;: -6.3500542640686035, &quot;IDs&quot;: &quot;ENSG00000187537&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.3039917945861816, &quot;y&quot;: -5.884538173675537, &quot;IDs&quot;: &quot;ENSG00000187583&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.001566171646118, &quot;y&quot;: -5.627543926239014, &quot;IDs&quot;: &quot;ENSG00000187689&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.297763347625732, &quot;y&quot;: -5.3963470458984375, &quot;IDs&quot;: &quot;ENSG00000187721&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.7081027030944824, &quot;y&quot;: -5.195279121398926, &quot;IDs&quot;: &quot;ENSG00000187987&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.6414563655853271, &quot;y&quot;: -5.75535249710083, &quot;IDs&quot;: &quot;ENSG00000188039&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.7393150329589844, &quot;y&quot;: -6.325221538543701, &quot;IDs&quot;: &quot;ENSG00000188107&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.295449733734131, &quot;y&quot;: -4.406397819519043, &quot;IDs&quot;: &quot;ENSG00000188234&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.5110191702842712, &quot;y&quot;: -6.370913982391357, &quot;IDs&quot;: &quot;ENSG00000188277&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.368483066558838, &quot;y&quot;: -4.864254951477051, &quot;IDs&quot;: &quot;ENSG00000189326&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.7003865838050842, &quot;y&quot;: -6.6681952476501465, &quot;IDs&quot;: &quot;ENSG00000189423&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.177842617034912, &quot;y&quot;: -5.257312774658203, &quot;IDs&quot;: &quot;ENSG00000196143&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.434338569641113, &quot;y&quot;: -5.520876884460449, &quot;IDs&quot;: &quot;ENSG00000196460&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.7430006265640259, &quot;y&quot;: -5.856378555297852, &quot;IDs&quot;: &quot;ENSG00000196562&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.208168029785156, &quot;y&quot;: -6.239030361175537, &quot;IDs&quot;: &quot;ENSG00000196593&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.458425760269165, &quot;y&quot;: -5.8887410163879395, &quot;IDs&quot;: &quot;ENSG00000196739&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.2209248542785645, &quot;y&quot;: -5.378196716308594, &quot;IDs&quot;: &quot;ENSG00000197046&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.792018175125122, &quot;y&quot;: -4.650008678436279, &quot;IDs&quot;: &quot;ENSG00000197279&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.6513378620147705, &quot;y&quot;: -5.577353477478027, &quot;IDs&quot;: &quot;ENSG00000197415&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.434525489807129, &quot;y&quot;: -4.6922407150268555, &quot;IDs&quot;: &quot;ENSG00000197580&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.3959250450134277, &quot;y&quot;: -6.536301612854004, &quot;IDs&quot;: &quot;ENSG00000197774&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.6306006908416748, &quot;y&quot;: -3.6680891513824463, &quot;IDs&quot;: &quot;ENSG00000197961&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.888648509979248, &quot;y&quot;: -6.237085819244385, &quot;IDs&quot;: &quot;ENSG00000197989&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.012078762054443, &quot;y&quot;: -6.399814605712891, &quot;IDs&quot;: &quot;ENSG00000198062&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1449528932571411, &quot;y&quot;: -4.452812671661377, &quot;IDs&quot;: &quot;ENSG00000198466&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1779286861419678, &quot;y&quot;: -4.318887710571289, &quot;IDs&quot;: &quot;ENSG00000198590&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.8930320739746094, &quot;y&quot;: -6.467238426208496, &quot;IDs&quot;: &quot;ENSG00000198848&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.7885993719100952, &quot;y&quot;: -6.390505790710449, &quot;IDs&quot;: &quot;ENSG00000198963&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.3094424605369568, &quot;y&quot;: -7.067562103271484, &quot;IDs&quot;: &quot;ENSG00000199530&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.5641047954559326, &quot;y&quot;: -5.148520469665527, &quot;IDs&quot;: &quot;ENSG00000200090&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.203305721282959, &quot;y&quot;: -5.442775726318359, &quot;IDs&quot;: &quot;ENSG00000200879&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.128622055053711, &quot;y&quot;: -4.953620433807373, &quot;IDs&quot;: &quot;ENSG00000201217&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.112051248550415, &quot;y&quot;: -4.728312969207764, &quot;IDs&quot;: &quot;ENSG00000201302&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.7414778470993042, &quot;y&quot;: -5.706583023071289, &quot;IDs&quot;: &quot;ENSG00000201544&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.36449456214904785, &quot;y&quot;: -5.952970504760742, &quot;IDs&quot;: &quot;ENSG00000201579&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.9622687101364136, &quot;y&quot;: -5.956369400024414, &quot;IDs&quot;: &quot;ENSG00000202566&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.5898256301879883, &quot;y&quot;: -4.826310634613037, &quot;IDs&quot;: &quot;ENSG00000203645&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.8446223735809326, &quot;y&quot;: -6.041559219360352, &quot;IDs&quot;: &quot;ENSG00000203875&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.7086158990859985, &quot;y&quot;: -6.018080711364746, &quot;IDs&quot;: &quot;ENSG00000203896&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.4394099712371826, &quot;y&quot;: -5.79938268661499, &quot;IDs&quot;: &quot;ENSG00000203923&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.0075387954711914, &quot;y&quot;: -5.343245506286621, &quot;IDs&quot;: &quot;ENSG00000204177&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.492974281311035, &quot;y&quot;: -4.761301040649414, &quot;IDs&quot;: &quot;ENSG00000204248&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.2402435541152954, &quot;y&quot;: -5.792277812957764, &quot;IDs&quot;: &quot;ENSG00000204287&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.457838773727417, &quot;y&quot;: -5.042984485626221, &quot;IDs&quot;: &quot;ENSG00000204388&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.374796152114868, &quot;y&quot;: -5.112294673919678, &quot;IDs&quot;: &quot;ENSG00000204389&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1911287307739258, &quot;y&quot;: -6.530039310455322, &quot;IDs&quot;: &quot;ENSG00000204410&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.0647783279418945, &quot;y&quot;: -5.888379096984863, &quot;IDs&quot;: &quot;ENSG00000204434&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.9692792892456055, &quot;y&quot;: -6.399676322937012, &quot;IDs&quot;: &quot;ENSG00000204677&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.4117238521575928, &quot;y&quot;: -5.901805877685547, &quot;IDs&quot;: &quot;ENSG00000204936&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.382598876953125, &quot;y&quot;: -4.995805263519287, &quot;IDs&quot;: &quot;ENSG00000205212&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.417008399963379, &quot;y&quot;: -5.233880519866943, &quot;IDs&quot;: &quot;ENSG00000205420&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.23441743850708, &quot;y&quot;: -6.005378723144531, &quot;IDs&quot;: &quot;ENSG00000205583&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.3298826217651367, &quot;y&quot;: -6.219658851623535, &quot;IDs&quot;: &quot;ENSG00000205592&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2936747074127197, &quot;y&quot;: -6.1383562088012695, &quot;IDs&quot;: &quot;ENSG00000205702&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.4177438020706177, &quot;y&quot;: -6.305405139923096, &quot;IDs&quot;: &quot;ENSG00000206530&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.984947681427002, &quot;y&quot;: -5.172554016113281, &quot;IDs&quot;: &quot;ENSG00000206601&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.305477142333984, &quot;y&quot;: -6.188724517822266, &quot;IDs&quot;: &quot;ENSG00000206712&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.243945598602295, &quot;y&quot;: -4.423619270324707, &quot;IDs&quot;: &quot;ENSG00000206754&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.121516704559326, &quot;y&quot;: -5.116620063781738, &quot;IDs&quot;: &quot;ENSG00000206846&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1351895332336426, &quot;y&quot;: -5.6216840744018555, &quot;IDs&quot;: &quot;ENSG00000207034&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.7862813472747803, &quot;y&quot;: -4.68267297744751, &quot;IDs&quot;: &quot;ENSG00000207234&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.265822410583496, &quot;y&quot;: -5.612709045410156, &quot;IDs&quot;: &quot;ENSG00000207392&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.0341624021530151, &quot;y&quot;: -6.224145412445068, &quot;IDs&quot;: &quot;ENSG00000207554&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.5574426651000977, &quot;y&quot;: -4.499572277069092, &quot;IDs&quot;: &quot;ENSG00000212371&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.4866392612457275, &quot;y&quot;: -4.608588695526123, &quot;IDs&quot;: &quot;ENSG00000212452&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1921442747116089, &quot;y&quot;: -4.722697734832764, &quot;IDs&quot;: &quot;ENSG00000213073&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.335639476776123, &quot;y&quot;: -4.462679386138916, &quot;IDs&quot;: &quot;ENSG00000213085&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.4122588038444519, &quot;y&quot;: -5.785097122192383, &quot;IDs&quot;: &quot;ENSG00000213185&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.199925422668457, &quot;y&quot;: -6.543058395385742, &quot;IDs&quot;: &quot;ENSG00000213658&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.6657568216323853, &quot;y&quot;: -5.868310451507568, &quot;IDs&quot;: &quot;ENSG00000213793&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.5988312363624573, &quot;y&quot;: -6.644864559173584, &quot;IDs&quot;: &quot;ENSG00000213918&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.2949472665786743, &quot;y&quot;: -6.0399489402771, &quot;IDs&quot;: &quot;ENSG00000213928&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.302776336669922, &quot;y&quot;: -6.040073871612549, &quot;IDs&quot;: &quot;ENSG00000214049&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.5835111141204834, &quot;y&quot;: -5.568358421325684, &quot;IDs&quot;: &quot;ENSG00000214081&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.7191206812858582, &quot;y&quot;: -6.649918556213379, &quot;IDs&quot;: &quot;ENSG00000214357&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.9154262542724609, &quot;y&quot;: -4.911649227142334, &quot;IDs&quot;: &quot;ENSG00000214652&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1548917293548584, &quot;y&quot;: -5.915639400482178, &quot;IDs&quot;: &quot;ENSG00000214815&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.6391983032226562, &quot;y&quot;: -4.558499336242676, &quot;IDs&quot;: &quot;ENSG00000214866&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.6924524307250977, &quot;y&quot;: -5.456341743469238, &quot;IDs&quot;: &quot;ENSG00000214954&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2995176315307617, &quot;y&quot;: -4.942534446716309, &quot;IDs&quot;: &quot;ENSG00000215158&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1775233745574951, &quot;y&quot;: -6.4063639640808105, &quot;IDs&quot;: &quot;ENSG00000215769&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.247399091720581, &quot;y&quot;: -5.946694374084473, &quot;IDs&quot;: &quot;ENSG00000215788&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.6314637064933777, &quot;y&quot;: -5.96027946472168, &quot;IDs&quot;: &quot;ENSG00000219395&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.5567471981048584, &quot;y&quot;: -6.089905738830566, &quot;IDs&quot;: &quot;ENSG00000221539&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.9739799499511719, &quot;y&quot;: -4.361905097961426, &quot;IDs&quot;: &quot;ENSG00000222345&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.0112555027008057, &quot;y&quot;: -5.667695045471191, &quot;IDs&quot;: &quot;ENSG00000222881&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.954084634780884, &quot;y&quot;: -6.405726909637451, &quot;IDs&quot;: &quot;ENSG00000223564&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.126577377319336, &quot;y&quot;: -6.5224833488464355, &quot;IDs&quot;: &quot;ENSG00000223720&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.089827537536621, &quot;y&quot;: -5.635143280029297, &quot;IDs&quot;: &quot;ENSG00000223756&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.276926517486572, &quot;y&quot;: -5.595362663269043, &quot;IDs&quot;: &quot;ENSG00000223831&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.398289203643799, &quot;y&quot;: -5.313658714294434, &quot;IDs&quot;: &quot;ENSG00000224099&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.9940452575683594, &quot;y&quot;: -5.137876987457275, &quot;IDs&quot;: &quot;ENSG00000224566&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.8110147714614868, &quot;y&quot;: -5.128662586212158, &quot;IDs&quot;: &quot;ENSG00000224709&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.0019489526748657, &quot;y&quot;: -4.863979339599609, &quot;IDs&quot;: &quot;ENSG00000224723&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2533581256866455, &quot;y&quot;: -5.220943450927734, &quot;IDs&quot;: &quot;ENSG00000224763&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.0812764167785645, &quot;y&quot;: -6.09080171585083, &quot;IDs&quot;: &quot;ENSG00000224975&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.080264091491699, &quot;y&quot;: -6.306601047515869, &quot;IDs&quot;: &quot;ENSG00000225418&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.486684799194336, &quot;y&quot;: -5.941789150238037, &quot;IDs&quot;: &quot;ENSG00000225420&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.3719398975372314, &quot;y&quot;: -5.702447414398193, &quot;IDs&quot;: &quot;ENSG00000225447&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.290710926055908, &quot;y&quot;: -6.292366027832031, &quot;IDs&quot;: &quot;ENSG00000226057&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.9477747678756714, &quot;y&quot;: -5.7773613929748535, &quot;IDs&quot;: &quot;ENSG00000226450&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.07262437045574188, &quot;y&quot;: -6.791903972625732, &quot;IDs&quot;: &quot;ENSG00000226480&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1612067222595215, &quot;y&quot;: -4.954900741577148, &quot;IDs&quot;: &quot;ENSG00000227045&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.407602071762085, &quot;y&quot;: -5.153815269470215, &quot;IDs&quot;: &quot;ENSG00000227398&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.7356491088867188, &quot;y&quot;: -4.859591484069824, &quot;IDs&quot;: &quot;ENSG00000227706&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.674478530883789, &quot;y&quot;: -5.196865558624268, &quot;IDs&quot;: &quot;ENSG00000227954&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.0491445064544678, &quot;y&quot;: -5.778132438659668, &quot;IDs&quot;: &quot;ENSG00000228107&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2366273403167725, &quot;y&quot;: -5.517470836639404, &quot;IDs&quot;: &quot;ENSG00000228252&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.4778639078140259, &quot;y&quot;: -6.4090728759765625, &quot;IDs&quot;: &quot;ENSG00000228727&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.71986722946167, &quot;y&quot;: -4.904918193817139, &quot;IDs&quot;: &quot;ENSG00000228793&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.378565788269043, &quot;y&quot;: -5.753398895263672, &quot;IDs&quot;: &quot;ENSG00000229089&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.5583897233009338, &quot;y&quot;: -5.477718830108643, &quot;IDs&quot;: &quot;ENSG00000229325&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.14356803894043, &quot;y&quot;: -6.144103527069092, &quot;IDs&quot;: &quot;ENSG00000229375&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.304356575012207, &quot;y&quot;: -6.135618209838867, &quot;IDs&quot;: &quot;ENSG00000229425&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.7849295139312744, &quot;y&quot;: -4.915136337280273, &quot;IDs&quot;: &quot;ENSG00000229771&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.2700748443603516, &quot;y&quot;: -6.226320743560791, &quot;IDs&quot;: &quot;ENSG00000230333&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.596714496612549, &quot;y&quot;: -4.50054407119751, &quot;IDs&quot;: &quot;ENSG00000230498&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.9518048763275146, &quot;y&quot;: -3.933347463607788, &quot;IDs&quot;: &quot;ENSG00000230551&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.192215085029602, &quot;y&quot;: -6.078636169433594, &quot;IDs&quot;: &quot;ENSG00000230590&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.9940741062164307, &quot;y&quot;: -5.9087605476379395, &quot;IDs&quot;: &quot;ENSG00000230666&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.766948699951172, &quot;y&quot;: -4.797549724578857, &quot;IDs&quot;: &quot;ENSG00000230715&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.4725162982940674, &quot;y&quot;: -4.927758693695068, &quot;IDs&quot;: &quot;ENSG00000230869&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.5988764762878418, &quot;y&quot;: -4.619876384735107, &quot;IDs&quot;: &quot;ENSG00000231125&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.99438738822937, &quot;y&quot;: -6.421193599700928, &quot;IDs&quot;: &quot;ENSG00000231131&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.6763904094696045, &quot;y&quot;: -5.6321611404418945, &quot;IDs&quot;: &quot;ENSG00000231298&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.3918120861053467, &quot;y&quot;: -4.706644535064697, &quot;IDs&quot;: &quot;ENSG00000231431&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.3750288486480713, &quot;y&quot;: -4.057234764099121, &quot;IDs&quot;: &quot;ENSG00000231587&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.038041591644287, &quot;y&quot;: -6.271659851074219, &quot;IDs&quot;: &quot;ENSG00000232502&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.6477906703948975, &quot;y&quot;: -5.688204765319824, &quot;IDs&quot;: &quot;ENSG00000232732&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.8306972980499268, &quot;y&quot;: -4.699575901031494, &quot;IDs&quot;: &quot;ENSG00000233515&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.387614369392395, &quot;y&quot;: -5.817989349365234, &quot;IDs&quot;: &quot;ENSG00000233585&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.5741913318634033, &quot;y&quot;: -4.559799671173096, &quot;IDs&quot;: &quot;ENSG00000233602&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.8265979290008545, &quot;y&quot;: -5.240584850311279, &quot;IDs&quot;: &quot;ENSG00000234741&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.523038387298584, &quot;y&quot;: -6.538221836090088, &quot;IDs&quot;: &quot;ENSG00000234771&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.9025298357009888, &quot;y&quot;: -5.913454532623291, &quot;IDs&quot;: &quot;ENSG00000234996&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.7858328819274902, &quot;y&quot;: -5.273915767669678, &quot;IDs&quot;: &quot;ENSG00000235081&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.312103271484375, &quot;y&quot;: -5.4674973487854, &quot;IDs&quot;: &quot;ENSG00000235500&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.341181755065918, &quot;y&quot;: -5.824869155883789, &quot;IDs&quot;: &quot;ENSG00000235571&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.07823777943849564, &quot;y&quot;: -8.616571426391602, &quot;IDs&quot;: &quot;ENSG00000235703&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.5719966888427734, &quot;y&quot;: -6.532179355621338, &quot;IDs&quot;: &quot;ENSG00000235890&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.460160493850708, &quot;y&quot;: -5.219226837158203, &quot;IDs&quot;: &quot;ENSG00000236039&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.4219199419021606, &quot;y&quot;: -5.055800914764404, &quot;IDs&quot;: &quot;ENSG00000236047&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.774817705154419, &quot;y&quot;: -5.730557918548584, &quot;IDs&quot;: &quot;ENSG00000236261&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.2909016609191895, &quot;y&quot;: -5.242325782775879, &quot;IDs&quot;: &quot;ENSG00000236345&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.2914679050445557, &quot;y&quot;: -5.619473934173584, &quot;IDs&quot;: &quot;ENSG00000236780&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.4648404121398926, &quot;y&quot;: -5.3819098472595215, &quot;IDs&quot;: &quot;ENSG00000236953&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.238928318023682, &quot;y&quot;: -5.84418249130249, &quot;IDs&quot;: &quot;ENSG00000237055&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.592913866043091, &quot;y&quot;: -6.062175750732422, &quot;IDs&quot;: &quot;ENSG00000237094&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.220853567123413, &quot;y&quot;: -5.569982051849365, &quot;IDs&quot;: &quot;ENSG00000237152&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.7983238697052002, &quot;y&quot;: -6.160037517547607, &quot;IDs&quot;: &quot;ENSG00000237200&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.5653393268585205, &quot;y&quot;: -4.990926742553711, &quot;IDs&quot;: &quot;ENSG00000237548&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1324551105499268, &quot;y&quot;: -5.984965801239014, &quot;IDs&quot;: &quot;ENSG00000237639&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.1838197708129883, &quot;y&quot;: -5.136323928833008, &quot;IDs&quot;: &quot;ENSG00000237950&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.974587917327881, &quot;y&quot;: -5.3216328620910645, &quot;IDs&quot;: &quot;ENSG00000238035&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.6843501925468445, &quot;y&quot;: -5.620759963989258, &quot;IDs&quot;: &quot;ENSG00000238083&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.4793881177902222, &quot;y&quot;: -5.823114395141602, &quot;IDs&quot;: &quot;ENSG00000238390&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.17598032951355, &quot;y&quot;: -4.044254779815674, &quot;IDs&quot;: &quot;ENSG00000238835&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.8176541328430176, &quot;y&quot;: -6.128357410430908, &quot;IDs&quot;: &quot;ENSG00000239402&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.5676133036613464, &quot;y&quot;: -6.478072643280029, &quot;IDs&quot;: &quot;ENSG00000239827&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.3170526027679443, &quot;y&quot;: -4.986399173736572, &quot;IDs&quot;: &quot;ENSG00000239948&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.367518663406372, &quot;y&quot;: -4.901937007904053, &quot;IDs&quot;: &quot;ENSG00000240731&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.8192548751831055, &quot;y&quot;: -5.266491889953613, &quot;IDs&quot;: &quot;ENSG00000240927&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.17931866645813, &quot;y&quot;: -4.733860015869141, &quot;IDs&quot;: &quot;ENSG00000241120&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.9020437002182007, &quot;y&quot;: -5.047519207000732, &quot;IDs&quot;: &quot;ENSG00000241362&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.30556657910346985, &quot;y&quot;: -7.651741027832031, &quot;IDs&quot;: &quot;ENSG00000241404&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1063015460968018, &quot;y&quot;: -6.230595588684082, &quot;IDs&quot;: &quot;ENSG00000241634&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.19741678237915, &quot;y&quot;: -5.7431864738464355, &quot;IDs&quot;: &quot;ENSG00000241671&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.8350802659988403, &quot;y&quot;: -5.729261875152588, &quot;IDs&quot;: &quot;ENSG00000242294&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.494159698486328, &quot;y&quot;: -4.924892902374268, &quot;IDs&quot;: &quot;ENSG00000242588&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.3090577125549316, &quot;y&quot;: -5.431000709533691, &quot;IDs&quot;: &quot;ENSG00000243289&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.473620653152466, &quot;y&quot;: -4.7516560554504395, &quot;IDs&quot;: &quot;ENSG00000243302&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.6963859796524048, &quot;y&quot;: -5.318412780761719, &quot;IDs&quot;: &quot;ENSG00000243679&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.7129438519477844, &quot;y&quot;: -6.216108322143555, &quot;IDs&quot;: &quot;ENSG00000243708&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.6330196857452393, &quot;y&quot;: -5.9773335456848145, &quot;IDs&quot;: &quot;ENSG00000243978&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.09785879403352737, &quot;y&quot;: -5.9768242835998535, &quot;IDs&quot;: &quot;ENSG00000244167&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.14877462387085, &quot;y&quot;: -5.933963298797607, &quot;IDs&quot;: &quot;ENSG00000244468&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.6629679203033447, &quot;y&quot;: -5.6407928466796875, &quot;IDs&quot;: &quot;ENSG00000247157&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.2085957527160645, &quot;y&quot;: -4.938435077667236, &quot;IDs&quot;: &quot;ENSG00000247627&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.14674711227417, &quot;y&quot;: -5.702652454376221, &quot;IDs&quot;: &quot;ENSG00000248112&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.9417738914489746, &quot;y&quot;: -5.793715000152588, &quot;IDs&quot;: &quot;ENSG00000248458&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.083270311355591, &quot;y&quot;: -4.619721412658691, &quot;IDs&quot;: &quot;ENSG00000248527&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.4938974380493164, &quot;y&quot;: -5.50846529006958, &quot;IDs&quot;: &quot;ENSG00000248587&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.132962226867676, &quot;y&quot;: -6.347296714782715, &quot;IDs&quot;: &quot;ENSG00000248596&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2124569416046143, &quot;y&quot;: -5.149338722229004, &quot;IDs&quot;: &quot;ENSG00000248936&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.180323600769043, &quot;y&quot;: -6.490031719207764, &quot;IDs&quot;: &quot;ENSG00000249849&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.17585279047489166, &quot;y&quot;: -6.704314708709717, &quot;IDs&quot;: &quot;ENSG00000249855&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.5727871656417847, &quot;y&quot;: -5.176140785217285, &quot;IDs&quot;: &quot;ENSG00000249857&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.7792670726776123, &quot;y&quot;: -5.755604267120361, &quot;IDs&quot;: &quot;ENSG00000249867&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.842177152633667, &quot;y&quot;: -6.439582824707031, &quot;IDs&quot;: &quot;ENSG00000250067&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.5531156063079834, &quot;y&quot;: -4.910751819610596, &quot;IDs&quot;: &quot;ENSG00000250787&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.813575506210327, &quot;y&quot;: -6.569894313812256, &quot;IDs&quot;: &quot;ENSG00000251011&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.3048136234283447, &quot;y&quot;: -6.274115562438965, &quot;IDs&quot;: &quot;ENSG00000251562&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.6969990730285645, &quot;y&quot;: -6.557807922363281, &quot;IDs&quot;: &quot;ENSG00000251623&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.2571682929992676, &quot;y&quot;: -6.687804222106934, &quot;IDs&quot;: &quot;ENSG00000251655&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.333388566970825, &quot;y&quot;: -4.672865867614746, &quot;IDs&quot;: &quot;ENSG00000251768&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.5221030712127686, &quot;y&quot;: -4.391932010650635, &quot;IDs&quot;: &quot;ENSG00000252311&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2784841060638428, &quot;y&quot;: -3.90916109085083, &quot;IDs&quot;: &quot;ENSG00000252498&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.39393720030784607, &quot;y&quot;: -5.57107400894165, &quot;IDs&quot;: &quot;ENSG00000252690&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.9111244678497314, &quot;y&quot;: -5.798816680908203, &quot;IDs&quot;: &quot;ENSG00000253476&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.2607274055480957, &quot;y&quot;: -4.6757893562316895, &quot;IDs&quot;: &quot;ENSG00000253503&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.9536790251731873, &quot;y&quot;: -4.705066680908203, &quot;IDs&quot;: &quot;ENSG00000253636&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.557088613510132, &quot;y&quot;: -5.903543472290039, &quot;IDs&quot;: &quot;ENSG00000253888&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.513195276260376, &quot;y&quot;: -5.684817314147949, &quot;IDs&quot;: &quot;ENSG00000254165&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.228851318359375, &quot;y&quot;: -6.400729656219482, &quot;IDs&quot;: &quot;ENSG00000254166&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.980775833129883, &quot;y&quot;: -4.824418544769287, &quot;IDs&quot;: &quot;ENSG00000254206&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.585418224334717, &quot;y&quot;: -5.111488342285156, &quot;IDs&quot;: &quot;ENSG00000254226&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.8194001317024231, &quot;y&quot;: -5.574392795562744, &quot;IDs&quot;: &quot;ENSG00000254463&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.4317638874053955, &quot;y&quot;: -4.798593997955322, &quot;IDs&quot;: &quot;ENSG00000254526&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.6991943120956421, &quot;y&quot;: -6.51423454284668, &quot;IDs&quot;: &quot;ENSG00000254535&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.933745265007019, &quot;y&quot;: -4.953706741333008, &quot;IDs&quot;: &quot;ENSG00000254577&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.7238235473632812, &quot;y&quot;: -5.704723358154297, &quot;IDs&quot;: &quot;ENSG00000254606&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.079538345336914, &quot;y&quot;: -5.620124816894531, &quot;IDs&quot;: &quot;ENSG00000254676&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.589585304260254, &quot;y&quot;: -4.786749362945557, &quot;IDs&quot;: &quot;ENSG00000254687&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.980965793132782, &quot;y&quot;: -6.090103626251221, &quot;IDs&quot;: &quot;ENSG00000255176&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.331611156463623, &quot;y&quot;: -4.896499156951904, &quot;IDs&quot;: &quot;ENSG00000255227&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.2725706994533539, &quot;y&quot;: -5.999431610107422, &quot;IDs&quot;: &quot;ENSG00000255234&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.278497695922852, &quot;y&quot;: -6.235295295715332, &quot;IDs&quot;: &quot;ENSG00000255363&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.3691225051879883, &quot;y&quot;: -5.957531929016113, &quot;IDs&quot;: &quot;ENSG00000255364&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.260162115097046, &quot;y&quot;: -4.4616312980651855, &quot;IDs&quot;: &quot;ENSG00000255423&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.7654972076416016, &quot;y&quot;: -5.873795509338379, &quot;IDs&quot;: &quot;ENSG00000255587&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.018174409866333, &quot;y&quot;: -4.390591621398926, &quot;IDs&quot;: &quot;ENSG00000255644&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.660459280014038, &quot;y&quot;: -3.5808193683624268, &quot;IDs&quot;: &quot;ENSG00000256615&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.9951257109642029, &quot;y&quot;: -5.578169345855713, &quot;IDs&quot;: &quot;ENSG00000256651&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.247737169265747, &quot;y&quot;: -4.9798197746276855, &quot;IDs&quot;: &quot;ENSG00000256667&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.5291599035263062, &quot;y&quot;: -4.550234794616699, &quot;IDs&quot;: &quot;ENSG00000257243&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.5953848361968994, &quot;y&quot;: -3.8044981956481934, &quot;IDs&quot;: &quot;ENSG00000257315&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.280084133148193, &quot;y&quot;: -4.4070258140563965, &quot;IDs&quot;: &quot;ENSG00000257475&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.2415251731872559, &quot;y&quot;: -4.311537265777588, &quot;IDs&quot;: &quot;ENSG00000257621&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.7249672412872314, &quot;y&quot;: -5.095519542694092, &quot;IDs&quot;: &quot;ENSG00000257662&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.134188413619995, &quot;y&quot;: -4.984975337982178, &quot;IDs&quot;: &quot;ENSG00000257803&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.41072702407836914, &quot;y&quot;: -5.629063129425049, &quot;IDs&quot;: &quot;ENSG00000258027&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.394803285598755, &quot;y&quot;: -4.8104658126831055, &quot;IDs&quot;: &quot;ENSG00000258077&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.5916752815246582, &quot;y&quot;: -4.736968517303467, &quot;IDs&quot;: &quot;ENSG00000258674&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.0344154834747314, &quot;y&quot;: -4.396509170532227, &quot;IDs&quot;: &quot;ENSG00000258682&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.194790840148926, &quot;y&quot;: -5.515420436859131, &quot;IDs&quot;: &quot;ENSG00000258859&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.0998451709747314, &quot;y&quot;: -5.898791790008545, &quot;IDs&quot;: &quot;ENSG00000259005&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.497168779373169, &quot;y&quot;: -4.799341201782227, &quot;IDs&quot;: &quot;ENSG00000259158&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.9266658425331116, &quot;y&quot;: -6.03696346282959, &quot;IDs&quot;: &quot;ENSG00000259254&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.3648419380187988, &quot;y&quot;: -4.515663146972656, &quot;IDs&quot;: &quot;ENSG00000259562&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.373229742050171, &quot;y&quot;: -5.000815391540527, &quot;IDs&quot;: &quot;ENSG00000259659&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.6226093769073486, &quot;y&quot;: -5.019088268280029, &quot;IDs&quot;: &quot;ENSG00000259732&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.7999378442764282, &quot;y&quot;: -5.248929023742676, &quot;IDs&quot;: &quot;ENSG00000259767&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.62886381149292, &quot;y&quot;: -3.888699531555176, &quot;IDs&quot;: &quot;ENSG00000259807&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.7811334133148193, &quot;y&quot;: -5.253194808959961, &quot;IDs&quot;: &quot;ENSG00000259868&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.510850191116333, &quot;y&quot;: -5.904047966003418, &quot;IDs&quot;: &quot;ENSG00000259878&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.0881686210632324, &quot;y&quot;: -6.109221935272217, &quot;IDs&quot;: &quot;ENSG00000259939&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.879564046859741, &quot;y&quot;: -5.607412338256836, &quot;IDs&quot;: &quot;ENSG00000260062&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.3018609285354614, &quot;y&quot;: -5.023186683654785, &quot;IDs&quot;: &quot;ENSG00000260144&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.421797513961792, &quot;y&quot;: -6.2415666580200195, &quot;IDs&quot;: &quot;ENSG00000260296&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.3723015785217285, &quot;y&quot;: -5.79791259765625, &quot;IDs&quot;: &quot;ENSG00000260648&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.46909695863723755, &quot;y&quot;: -5.793339729309082, &quot;IDs&quot;: &quot;ENSG00000260751&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.7836968898773193, &quot;y&quot;: -4.890072345733643, &quot;IDs&quot;: &quot;ENSG00000260896&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.6846115589141846, &quot;y&quot;: -5.7928924560546875, &quot;IDs&quot;: &quot;ENSG00000261123&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.1506166458129883, &quot;y&quot;: -6.089583396911621, &quot;IDs&quot;: &quot;ENSG00000261373&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.6406288146972656, &quot;y&quot;: -5.9193572998046875, &quot;IDs&quot;: &quot;ENSG00000261534&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.8696178197860718, &quot;y&quot;: -4.343502998352051, &quot;IDs&quot;: &quot;ENSG00000261560&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.67232084274292, &quot;y&quot;: -5.779208660125732, &quot;IDs&quot;: &quot;ENSG00000261744&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.791624665260315, &quot;y&quot;: -5.955410003662109, &quot;IDs&quot;: &quot;ENSG00000261949&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.3496733903884888, &quot;y&quot;: -6.436508655548096, &quot;IDs&quot;: &quot;ENSG00000261971&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.301546096801758, &quot;y&quot;: -5.924505710601807, &quot;IDs&quot;: &quot;ENSG00000262663&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.201221466064453, &quot;y&quot;: -5.79960823059082, &quot;IDs&quot;: &quot;ENSG00000263786&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.6779918670654297, &quot;y&quot;: -6.050954818725586, &quot;IDs&quot;: &quot;ENSG00000264006&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.010592959821224213, &quot;y&quot;: -6.981759548187256, &quot;IDs&quot;: &quot;ENSG00000264188&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.0200340747833252, &quot;y&quot;: -6.021267890930176, &quot;IDs&quot;: &quot;ENSG00000264334&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.4408036470413208, &quot;y&quot;: -5.874192714691162, &quot;IDs&quot;: &quot;ENSG00000264349&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.2199525833129883, &quot;y&quot;: -4.112860679626465, &quot;IDs&quot;: &quot;ENSG00000264425&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.962023973464966, &quot;y&quot;: -5.125504970550537, &quot;IDs&quot;: &quot;ENSG00000264743&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.6512451171875, &quot;y&quot;: -5.882256031036377, &quot;IDs&quot;: &quot;ENSG00000265112&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.19030499458313, &quot;y&quot;: -4.851980209350586, &quot;IDs&quot;: &quot;ENSG00000265145&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.8056161403656006, &quot;y&quot;: -4.644229888916016, &quot;IDs&quot;: &quot;ENSG00000265233&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.7965800762176514, &quot;y&quot;: -4.918416976928711, &quot;IDs&quot;: &quot;ENSG00000265766&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.1365396976470947, &quot;y&quot;: -6.10894775390625, &quot;IDs&quot;: &quot;ENSG00000265800&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.40455499291419983, &quot;y&quot;: -6.935147762298584, &quot;IDs&quot;: &quot;ENSG00000265843&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.4998044967651367, &quot;y&quot;: -4.353263854980469, &quot;IDs&quot;: &quot;ENSG00000266236&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.3897359371185303, &quot;y&quot;: -5.347258567810059, &quot;IDs&quot;: &quot;ENSG00000266743&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.7061753273010254, &quot;y&quot;: -5.758299350738525, &quot;IDs&quot;: &quot;ENSG00000266777&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.6433053016662598, &quot;y&quot;: -6.205345153808594, &quot;IDs&quot;: &quot;ENSG00000266924&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.3853533267974854, &quot;y&quot;: -4.631200790405273, &quot;IDs&quot;: &quot;ENSG00000267041&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.998124122619629, &quot;y&quot;: -6.435482978820801, &quot;IDs&quot;: &quot;ENSG00000267614&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.444939136505127, &quot;y&quot;: -5.900014877319336, &quot;IDs&quot;: &quot;ENSG00000267648&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.237404823303223, &quot;y&quot;: -5.819544792175293, &quot;IDs&quot;: &quot;ENSG00000267686&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.1475422382354736, &quot;y&quot;: -5.896419048309326, &quot;IDs&quot;: &quot;ENSG00000268108&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.8285759687423706, &quot;y&quot;: -5.625575542449951, &quot;IDs&quot;: &quot;ENSG00000268201&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.9531190991401672, &quot;y&quot;: -6.337565898895264, &quot;IDs&quot;: &quot;ENSG00000268287&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.5931060314178467, &quot;y&quot;: -5.251419544219971, &quot;IDs&quot;: &quot;ENSG00000268499&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.6915193796157837, &quot;y&quot;: -4.753764629364014, &quot;IDs&quot;: &quot;ENSG00000268896&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.214669942855835, &quot;y&quot;: -4.0214619636535645, &quot;IDs&quot;: &quot;ENSG00000269699&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1664105653762817, &quot;y&quot;: -5.319767951965332, &quot;IDs&quot;: &quot;ENSG00000269821&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.5678497552871704, &quot;y&quot;: -6.832801342010498, &quot;IDs&quot;: &quot;ENSG00000269954&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.2155473232269287, &quot;y&quot;: -4.878183364868164, &quot;IDs&quot;: &quot;ENSG00000269974&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1503584384918213, &quot;y&quot;: -5.507190227508545, &quot;IDs&quot;: &quot;ENSG00000270000&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.43977677822113037, &quot;y&quot;: -6.102231502532959, &quot;IDs&quot;: &quot;ENSG00000270012&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.6588563919067383, &quot;y&quot;: -5.370120048522949, &quot;IDs&quot;: &quot;ENSG00000270015&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.9689779877662659, &quot;y&quot;: -6.228058815002441, &quot;IDs&quot;: &quot;ENSG00000270108&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.24586060643196106, &quot;y&quot;: -6.432514190673828, &quot;IDs&quot;: &quot;ENSG00000270165&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.224227428436279, &quot;y&quot;: -4.522351264953613, &quot;IDs&quot;: &quot;ENSG00000270629&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.215501070022583, &quot;y&quot;: -5.033033847808838, &quot;IDs&quot;: &quot;ENSG00000270704&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.058642387390137, &quot;y&quot;: -5.5722455978393555, &quot;IDs&quot;: &quot;ENSG00000271021&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.845790147781372, &quot;y&quot;: -5.0453972816467285, &quot;IDs&quot;: &quot;ENSG00000271209&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.341107130050659, &quot;y&quot;: -4.455600261688232, &quot;IDs&quot;: &quot;ENSG00000271347&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.875920057296753, &quot;y&quot;: -4.81426477432251, &quot;IDs&quot;: &quot;ENSG00000271383&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.8857123851776123, &quot;y&quot;: -5.01053524017334, &quot;IDs&quot;: &quot;ENSG00000271425&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.4389750957489014, &quot;y&quot;: -6.134349346160889, &quot;IDs&quot;: &quot;ENSG00000271533&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.309284210205078, &quot;y&quot;: -4.683907985687256, &quot;IDs&quot;: &quot;ENSG00000271590&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.0004879236221313, &quot;y&quot;: -6.118588447570801, &quot;IDs&quot;: &quot;ENSG00000271795&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.658097267150879, &quot;y&quot;: -5.804234504699707, &quot;IDs&quot;: &quot;ENSG00000271862&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.689253330230713, &quot;y&quot;: -4.884069919586182, &quot;IDs&quot;: &quot;ENSG00000272034&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2265565395355225, &quot;y&quot;: -5.003536224365234, &quot;IDs&quot;: &quot;ENSG00000272054&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.581448793411255, &quot;y&quot;: -6.532853126525879, &quot;IDs&quot;: &quot;ENSG00000272505&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.4619135856628418, &quot;y&quot;: -5.56189489364624, &quot;IDs&quot;: &quot;ENSG00000272574&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2397170066833496, &quot;y&quot;: -5.493637561798096, &quot;IDs&quot;: &quot;ENSG00000272918&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.0499987602233887, &quot;y&quot;: -5.267949104309082, &quot;IDs&quot;: &quot;ENSG00000273007&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.482314109802246, &quot;y&quot;: -4.891696453094482, &quot;IDs&quot;: &quot;ENSG00000273096&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.2288657426834106, &quot;y&quot;: -5.360937595367432, &quot;IDs&quot;: &quot;ENSG00000273353&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.32057705521583557, &quot;y&quot;: -6.858917236328125, &quot;IDs&quot;: &quot;ENSG00000273373&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.8275887966156006, &quot;y&quot;: -6.168417453765869, &quot;IDs&quot;: &quot;ENSG00000273588&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.743077039718628, &quot;y&quot;: -5.967990398406982, &quot;IDs&quot;: &quot;ENSG00000273777&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.339361190795898, &quot;y&quot;: -5.24491024017334, &quot;IDs&quot;: &quot;ENSG00000273802&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1840401887893677, &quot;y&quot;: -4.6029534339904785, &quot;IDs&quot;: &quot;ENSG00000273973&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.252716064453125, &quot;y&quot;: -5.161801338195801, &quot;IDs&quot;: &quot;ENSG00000274238&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.166029691696167, &quot;y&quot;: -4.794484615325928, &quot;IDs&quot;: &quot;ENSG00000274297&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.4769834280014038, &quot;y&quot;: -4.497781753540039, &quot;IDs&quot;: &quot;ENSG00000274391&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1896065473556519, &quot;y&quot;: -4.268789768218994, &quot;IDs&quot;: &quot;ENSG00000274422&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.5722150802612305, &quot;y&quot;: -5.691400527954102, &quot;IDs&quot;: &quot;ENSG00000274461&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.5646859407424927, &quot;y&quot;: -5.86027193069458, &quot;IDs&quot;: &quot;ENSG00000274602&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.298314332962036, &quot;y&quot;: -4.656100273132324, &quot;IDs&quot;: &quot;ENSG00000274750&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0.03515501692891121, &quot;y&quot;: -6.563080310821533, &quot;IDs&quot;: &quot;ENSG00000274776&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.6029257774353027, &quot;y&quot;: -6.515077590942383, &quot;IDs&quot;: &quot;ENSG00000275318&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.3639709949493408, &quot;y&quot;: -6.177577972412109, &quot;IDs&quot;: &quot;ENSG00000275560&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.3216009140014648, &quot;y&quot;: -4.94666051864624, &quot;IDs&quot;: &quot;ENSG00000276115&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2152395248413086, &quot;y&quot;: -5.047126293182373, &quot;IDs&quot;: &quot;ENSG00000276934&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1701871156692505, &quot;y&quot;: -6.107906818389893, &quot;IDs&quot;: &quot;ENSG00000277072&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.3666940927505493, &quot;y&quot;: -5.118078708648682, &quot;IDs&quot;: &quot;ENSG00000277297&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.4567983150482178, &quot;y&quot;: -5.772189617156982, &quot;IDs&quot;: &quot;ENSG00000277728&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.8981242179870605, &quot;y&quot;: -5.962459087371826, &quot;IDs&quot;: &quot;ENSG00000277883&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.531581163406372, &quot;y&quot;: -4.79746675491333, &quot;IDs&quot;: &quot;ENSG00000278861&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.9950623512268066, &quot;y&quot;: -5.333854675292969, &quot;IDs&quot;: &quot;ENSG00000278959&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.17279069125652313, &quot;y&quot;: -6.582608699798584, &quot;IDs&quot;: &quot;ENSG00000279030&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.142393708229065, &quot;y&quot;: -6.279047012329102, &quot;IDs&quot;: &quot;ENSG00000279066&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.8813867568969727, &quot;y&quot;: -4.29885196685791, &quot;IDs&quot;: &quot;ENSG00000279191&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.4489597082138062, &quot;y&quot;: -4.417916297912598, &quot;IDs&quot;: &quot;ENSG00000279192&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.605010509490967, &quot;y&quot;: -4.421786308288574, &quot;IDs&quot;: &quot;ENSG00000279676&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.7771832942962646, &quot;y&quot;: -5.304996490478516, &quot;IDs&quot;: &quot;ENSG00000279688&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.6175910234451294, &quot;y&quot;: -6.029969215393066, &quot;IDs&quot;: &quot;ENSG00000279712&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.5071744918823242, &quot;y&quot;: -4.2134881019592285, &quot;IDs&quot;: &quot;ENSG00000279794&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.957925796508789, &quot;y&quot;: -4.93548583984375, &quot;IDs&quot;: &quot;ENSG00000279812&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.8679707050323486, &quot;y&quot;: -4.800886154174805, &quot;IDs&quot;: &quot;ENSG00000279998&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.699087142944336, &quot;y&quot;: -4.441969871520996, &quot;IDs&quot;: &quot;ENSG00000280063&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.7329771518707275, &quot;y&quot;: -5.683109760284424, &quot;IDs&quot;: &quot;ENSG00000280069&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.2926993370056152, &quot;y&quot;: -5.227296352386475, &quot;IDs&quot;: &quot;ENSG00000280136&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.2672669887542725, &quot;y&quot;: -5.091848850250244, &quot;IDs&quot;: &quot;ENSG00000280184&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.9644166231155396, &quot;y&quot;: -6.174502372741699, &quot;IDs&quot;: &quot;ENSG00000280228&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.3291497230529785, &quot;y&quot;: -5.975220203399658, &quot;IDs&quot;: &quot;ENSG00000280279&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.5589964389801025, &quot;y&quot;: -5.923648834228516, &quot;IDs&quot;: &quot;ENSG00000280347&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.8619868755340576, &quot;y&quot;: -5.916452407836914, &quot;IDs&quot;: &quot;ENSG00000280543&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.073707580566406, &quot;y&quot;: -4.955749988555908, &quot;IDs&quot;: &quot;ENSG00000280639&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.30238544940948486, &quot;y&quot;: -6.949998378753662, &quot;IDs&quot;: &quot;ENSG00000280734&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.1921461820602417, &quot;y&quot;: -5.128551006317139, &quot;IDs&quot;: &quot;ENSG00000281183&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.959106683731079, &quot;y&quot;: -5.746658802032471, &quot;IDs&quot;: &quot;ENSG00000281344&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.523486852645874, &quot;y&quot;: -4.129701614379883, &quot;IDs&quot;: &quot;ENSG00000281398&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.6753952503204346, &quot;y&quot;: -5.383732318878174, &quot;IDs&quot;: &quot;ENSG00000282815&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.8761773109436035, &quot;y&quot;: -5.270300388336182, &quot;IDs&quot;: &quot;ENSG00000283064&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.5743374824523926, &quot;y&quot;: -6.132032871246338, &quot;IDs&quot;: &quot;ENSG00000283180&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.500333309173584, &quot;y&quot;: -5.1582865715026855, &quot;IDs&quot;: &quot;ENSG00000283200&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.005749225616455, &quot;y&quot;: -5.79417610168457, &quot;IDs&quot;: &quot;ENSG00000283235&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.17982783913612366, &quot;y&quot;: -6.348995208740234, &quot;IDs&quot;: &quot;ENSG00000283311&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.8951687812805176, &quot;y&quot;: -5.245017051696777, &quot;IDs&quot;: &quot;ENSG00000283578&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.0691447257995605, &quot;y&quot;: -6.2233967781066895, &quot;IDs&quot;: &quot;ENSG00000283879&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.8222203254699707, &quot;y&quot;: -5.9473772048950195, &quot;IDs&quot;: &quot;ENSG00000284630&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -2.9928393363952637, &quot;y&quot;: -5.256789684295654, &quot;IDs&quot;: &quot;ENSG00000284656&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.1164817810058594, &quot;y&quot;: -5.114703178405762, &quot;IDs&quot;: &quot;ENSG00000284837&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.2385220527648926, &quot;y&quot;: -4.7390875816345215, &quot;IDs&quot;: &quot;ENSG00000284946&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.105766296386719, &quot;y&quot;: -4.909660339355469, &quot;IDs&quot;: &quot;ENSG00000285534&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -4.1164021492004395, &quot;y&quot;: -5.4073052406311035, &quot;IDs&quot;: &quot;ENSG00000285648&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -0.8496277928352356, &quot;y&quot;: -6.421811580657959, &quot;IDs&quot;: &quot;ENSG00000285730&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -1.633167028427124, &quot;y&quot;: -6.514073371887207, &quot;IDs&quot;: &quot;ENSG00000285873&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.485985279083252, &quot;y&quot;: -5.13340950012207, &quot;IDs&quot;: &quot;ENSG00000285943&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: -3.593923568725586, &quot;y&quot;: -4.513733386993408, &quot;IDs&quot;: &quot;ENSG00000081692&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10.128253936767578, &quot;y&quot;: -4.37831974029541, &quot;IDs&quot;: &quot;ENSG00000101638&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4.88702392578125, &quot;y&quot;: -5.672033786773682, &quot;IDs&quot;: &quot;ENSG00000133250&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7.390219688415527, &quot;y&quot;: -4.551517486572266, &quot;IDs&quot;: &quot;ENSG00000165490&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#00ff86&quot;, &quot;name&quot;: &quot;cluster_03&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 4.761434078216553, &quot;y&quot;: -8.032206535339355, &quot;IDs&quot;: &quot;ENSG00000105516&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -2.0157577991485596, &quot;y&quot;: 2.358853340148926, &quot;IDs&quot;: &quot;ENSG00000152939&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -2.845818281173706, &quot;y&quot;: 3.7399353981018066, &quot;IDs&quot;: &quot;ENSG00000162924&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.0390784740448, &quot;y&quot;: -8.648903846740723, &quot;IDs&quot;: &quot;ENSG00000164683&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -1.9763202667236328, &quot;y&quot;: 2.3584585189819336, &quot;IDs&quot;: &quot;ENSG00000168811&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -2.3597452640533447, &quot;y&quot;: 2.197906017303467, &quot;IDs&quot;: &quot;ENSG00000170345&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -2.3090107440948486, &quot;y&quot;: 3.213283061981201, &quot;IDs&quot;: &quot;ENSG00000171574&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -2.67287278175354, &quot;y&quot;: 3.2462961673736572, &quot;IDs&quot;: &quot;ENSG00000180251&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.274523735046387, &quot;y&quot;: -10.710944175720215, &quot;IDs&quot;: &quot;ENSG00000184226&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.21456824243068695, &quot;y&quot;: -10.918793678283691, &quot;IDs&quot;: &quot;ENSG00000186272&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -1.9900232553482056, &quot;y&quot;: 2.5350122451782227, &quot;IDs&quot;: &quot;ENSG00000225205&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -1.8646241426467896, &quot;y&quot;: 2.6080071926116943, &quot;IDs&quot;: &quot;ENSG00000225655&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -2.275049924850464, &quot;y&quot;: 2.6388330459594727, &quot;IDs&quot;: &quot;ENSG00000232034&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -1.6734017133712769, &quot;y&quot;: 2.7119743824005127, &quot;IDs&quot;: &quot;ENSG00000233384&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -2.2158148288726807, &quot;y&quot;: 3.1309118270874023, &quot;IDs&quot;: &quot;ENSG00000234685&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -2.6632676124572754, &quot;y&quot;: 2.6190435886383057, &quot;IDs&quot;: &quot;ENSG00000235244&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.4298689365386963, &quot;y&quot;: -11.328131675720215, &quot;IDs&quot;: &quot;ENSG00000242419&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.9416823387146, &quot;y&quot;: -11.631453514099121, &quot;IDs&quot;: &quot;ENSG00000246889&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.854628086090088, &quot;y&quot;: -11.4773530960083, &quot;IDs&quot;: &quot;ENSG00000247516&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1432307958602905, &quot;y&quot;: -9.796873092651367, &quot;IDs&quot;: &quot;ENSG00000256060&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.3217502236366272, &quot;y&quot;: -10.988101959228516, &quot;IDs&quot;: &quot;ENSG00000257913&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -1.3663077354431152, &quot;y&quot;: 1.6138778924942017, &quot;IDs&quot;: &quot;ENSG00000272146&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -1.8982337713241577, &quot;y&quot;: 2.1608757972717285, &quot;IDs&quot;: &quot;ENSG00000276744&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.020061731338501, &quot;y&quot;: -12.776573181152344, &quot;IDs&quot;: &quot;ENSG00000003400&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0918077230453491, &quot;y&quot;: -8.114710807800293, &quot;IDs&quot;: &quot;ENSG00000004777&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.2033257484436035, &quot;y&quot;: -12.697595596313477, &quot;IDs&quot;: &quot;ENSG00000004846&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.243317127227783, &quot;y&quot;: -8.227862358093262, &quot;IDs&quot;: &quot;ENSG00000005108&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7897632122039795, &quot;y&quot;: -7.927883625030518, &quot;IDs&quot;: &quot;ENSG00000005187&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.307194709777832, &quot;y&quot;: -11.631270408630371, &quot;IDs&quot;: &quot;ENSG00000005469&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.2668852806091309, &quot;y&quot;: -8.003508567810059, &quot;IDs&quot;: &quot;ENSG00000005961&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.451968669891357, &quot;y&quot;: -8.907769203186035, &quot;IDs&quot;: &quot;ENSG00000006740&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.45220422744751, &quot;y&quot;: -11.153651237487793, &quot;IDs&quot;: &quot;ENSG00000007171&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.916184902191162, &quot;y&quot;: -8.471787452697754, &quot;IDs&quot;: &quot;ENSG00000007968&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.087791442871094, &quot;y&quot;: -8.33316421508789, &quot;IDs&quot;: &quot;ENSG00000011638&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3218190670013428, &quot;y&quot;: -12.497204780578613, &quot;IDs&quot;: &quot;ENSG00000013392&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4625983238220215, &quot;y&quot;: -12.912786483764648, &quot;IDs&quot;: &quot;ENSG00000014138&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5484328269958496, &quot;y&quot;: -12.031877517700195, &quot;IDs&quot;: &quot;ENSG00000018625&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.764500617980957, &quot;y&quot;: -7.210905075073242, &quot;IDs&quot;: &quot;ENSG00000019485&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4618990421295166, &quot;y&quot;: -11.862992286682129, &quot;IDs&quot;: &quot;ENSG00000030419&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.701627492904663, &quot;y&quot;: -11.912020683288574, &quot;IDs&quot;: &quot;ENSG00000033122&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.463893890380859, &quot;y&quot;: -7.812685966491699, &quot;IDs&quot;: &quot;ENSG00000033327&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0505138635635376, &quot;y&quot;: -11.682794570922852, &quot;IDs&quot;: &quot;ENSG00000033627&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.685991048812866, &quot;y&quot;: -13.005234718322754, &quot;IDs&quot;: &quot;ENSG00000036672&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3697075843811035, &quot;y&quot;: -11.921607971191406, &quot;IDs&quot;: &quot;ENSG00000040608&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7820252776145935, &quot;y&quot;: -8.687838554382324, &quot;IDs&quot;: &quot;ENSG00000040731&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.2051191329956055, &quot;y&quot;: -9.884811401367188, &quot;IDs&quot;: &quot;ENSG00000047648&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.166423797607422, &quot;y&quot;: -10.239541053771973, &quot;IDs&quot;: &quot;ENSG00000049283&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.741787433624268, &quot;y&quot;: -9.838934898376465, &quot;IDs&quot;: &quot;ENSG00000050030&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.39456912875175476, &quot;y&quot;: -7.5010294914245605, &quot;IDs&quot;: &quot;ENSG00000050426&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9405755400657654, &quot;y&quot;: -7.8639235496521, &quot;IDs&quot;: &quot;ENSG00000051523&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.255413055419922, &quot;y&quot;: -10.825318336486816, &quot;IDs&quot;: &quot;ENSG00000052850&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3545705080032349, &quot;y&quot;: -11.532560348510742, &quot;IDs&quot;: &quot;ENSG00000053108&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7473738193511963, &quot;y&quot;: -12.858635902404785, &quot;IDs&quot;: &quot;ENSG00000056736&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.902435779571533, &quot;y&quot;: -8.115242958068848, &quot;IDs&quot;: &quot;ENSG00000057294&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.060214042663574, &quot;y&quot;: -7.621725082397461, &quot;IDs&quot;: &quot;ENSG00000059122&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.236138343811035, &quot;y&quot;: -10.007063865661621, &quot;IDs&quot;: &quot;ENSG00000060140&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.173301696777344, &quot;y&quot;: -9.777548789978027, &quot;IDs&quot;: &quot;ENSG00000061337&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.354366302490234, &quot;y&quot;: -8.02617359161377, &quot;IDs&quot;: &quot;ENSG00000061918&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1447001695632935, &quot;y&quot;: -8.501124382019043, &quot;IDs&quot;: &quot;ENSG00000063127&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8780093789100647, &quot;y&quot;: -8.755507469177246, &quot;IDs&quot;: &quot;ENSG00000064547&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4413444995880127, &quot;y&quot;: -12.371031761169434, &quot;IDs&quot;: &quot;ENSG00000064989&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.9832987785339355, &quot;y&quot;: -8.128683090209961, &quot;IDs&quot;: &quot;ENSG00000065060&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.6278618574142456, &quot;y&quot;: -11.461249351501465, &quot;IDs&quot;: &quot;ENSG00000065357&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.335548400878906, &quot;y&quot;: -7.583705425262451, &quot;IDs&quot;: &quot;ENSG00000065361&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.439262866973877, &quot;y&quot;: -11.68310832977295, &quot;IDs&quot;: &quot;ENSG00000065413&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.2720561027526855, &quot;y&quot;: -12.796270370483398, &quot;IDs&quot;: &quot;ENSG00000065609&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.546245574951172, &quot;y&quot;: -10.862125396728516, &quot;IDs&quot;: &quot;ENSG00000066735&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.087854862213135, &quot;y&quot;: -9.63418960571289, &quot;IDs&quot;: &quot;ENSG00000067842&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6584019660949707, &quot;y&quot;: -9.248739242553711, &quot;IDs&quot;: &quot;ENSG00000068137&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8832554817199707, &quot;y&quot;: -12.877023696899414, &quot;IDs&quot;: &quot;ENSG00000068615&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7611887454986572, &quot;y&quot;: -7.785245895385742, &quot;IDs&quot;: &quot;ENSG00000068971&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.762024402618408, &quot;y&quot;: -9.02145004272461, &quot;IDs&quot;: &quot;ENSG00000070371&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8766136169433594, &quot;y&quot;: -12.96480941772461, &quot;IDs&quot;: &quot;ENSG00000070669&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.604907035827637, &quot;y&quot;: -10.492615699768066, &quot;IDs&quot;: &quot;ENSG00000071073&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3684535026550293, &quot;y&quot;: -9.835482597351074, &quot;IDs&quot;: &quot;ENSG00000072135&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.373738765716553, &quot;y&quot;: -8.612394332885742, &quot;IDs&quot;: &quot;ENSG00000072201&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7036556005477905, &quot;y&quot;: -8.772290229797363, &quot;IDs&quot;: &quot;ENSG00000073146&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.358868598937988, &quot;y&quot;: -8.554797172546387, &quot;IDs&quot;: &quot;ENSG00000073350&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.9648635387420654, &quot;y&quot;: -9.142946243286133, &quot;IDs&quot;: &quot;ENSG00000074855&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.832411527633667, &quot;y&quot;: -11.50086784362793, &quot;IDs&quot;: &quot;ENSG00000074966&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.420928955078125, &quot;y&quot;: -8.600175857543945, &quot;IDs&quot;: &quot;ENSG00000075303&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9171385765075684, &quot;y&quot;: -8.360822677612305, &quot;IDs&quot;: &quot;ENSG00000075651&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5379087924957275, &quot;y&quot;: -12.56241226196289, &quot;IDs&quot;: &quot;ENSG00000075891&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.607170343399048, &quot;y&quot;: -10.424769401550293, &quot;IDs&quot;: &quot;ENSG00000076555&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.74405574798584, &quot;y&quot;: -12.627248764038086, &quot;IDs&quot;: &quot;ENSG00000077092&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.796709060668945, &quot;y&quot;: -8.789708137512207, &quot;IDs&quot;: &quot;ENSG00000078053&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.537700176239014, &quot;y&quot;: -6.781795501708984, &quot;IDs&quot;: &quot;ENSG00000078246&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.008251190185547, &quot;y&quot;: -12.961716651916504, &quot;IDs&quot;: &quot;ENSG00000078900&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.530623197555542, &quot;y&quot;: -11.013324737548828, &quot;IDs&quot;: &quot;ENSG00000079102&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.095726490020752, &quot;y&quot;: -10.072990417480469, &quot;IDs&quot;: &quot;ENSG00000080031&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1421165466308594, &quot;y&quot;: -7.866988182067871, &quot;IDs&quot;: &quot;ENSG00000080947&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.2766616344451904, &quot;y&quot;: -12.417465209960938, &quot;IDs&quot;: &quot;ENSG00000082438&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.641210079193115, &quot;y&quot;: -11.942206382751465, &quot;IDs&quot;: &quot;ENSG00000083290&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.354231357574463, &quot;y&quot;: -10.247509956359863, &quot;IDs&quot;: &quot;ENSG00000084453&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.036354422569275, &quot;y&quot;: -8.8985595703125, &quot;IDs&quot;: &quot;ENSG00000085552&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.719253063201904, &quot;y&quot;: -11.52011775970459, &quot;IDs&quot;: &quot;ENSG00000085741&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.972895622253418, &quot;y&quot;: -7.776544094085693, &quot;IDs&quot;: &quot;ENSG00000087258&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.54468297958374, &quot;y&quot;: -11.616727828979492, &quot;IDs&quot;: &quot;ENSG00000088053&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.467736005783081, &quot;y&quot;: -7.389700889587402, &quot;IDs&quot;: &quot;ENSG00000088538&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.931764602661133, &quot;y&quot;: -8.053628921508789, &quot;IDs&quot;: &quot;ENSG00000088899&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7646236419677734, &quot;y&quot;: -12.190897941589355, &quot;IDs&quot;: &quot;ENSG00000089041&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.061515808105469, &quot;y&quot;: -10.228805541992188, &quot;IDs&quot;: &quot;ENSG00000089225&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6089212894439697, &quot;y&quot;: -9.928388595581055, &quot;IDs&quot;: &quot;ENSG00000090512&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3734359741210938, &quot;y&quot;: -10.27332878112793, &quot;IDs&quot;: &quot;ENSG00000091262&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2156479358673096, &quot;y&quot;: -12.395451545715332, &quot;IDs&quot;: &quot;ENSG00000092421&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2413110733032227, &quot;y&quot;: -9.533037185668945, &quot;IDs&quot;: &quot;ENSG00000095370&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.34943687915802, &quot;y&quot;: -8.677876472473145, &quot;IDs&quot;: &quot;ENSG00000099251&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5227363109588623, &quot;y&quot;: -8.72718334197998, &quot;IDs&quot;: &quot;ENSG00000099260&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.460623264312744, &quot;y&quot;: -9.949158668518066, &quot;IDs&quot;: &quot;ENSG00000099849&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8634835481643677, &quot;y&quot;: -10.125765800476074, &quot;IDs&quot;: &quot;ENSG00000099866&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.935274124145508, &quot;y&quot;: -8.583053588867188, &quot;IDs&quot;: &quot;ENSG00000099889&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.086225509643555, &quot;y&quot;: -9.474295616149902, &quot;IDs&quot;: &quot;ENSG00000099953&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.08441128581762314, &quot;y&quot;: -8.57962703704834, &quot;IDs&quot;: &quot;ENSG00000099957&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.033831596374512, &quot;y&quot;: -11.537989616394043, &quot;IDs&quot;: &quot;ENSG00000100027&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.108715534210205, &quot;y&quot;: -8.357726097106934, &quot;IDs&quot;: &quot;ENSG00000100121&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.544374465942383, &quot;y&quot;: -11.365365028381348, &quot;IDs&quot;: &quot;ENSG00000100167&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.83967924118042, &quot;y&quot;: -8.827409744262695, &quot;IDs&quot;: &quot;ENSG00000100181&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5102612376213074, &quot;y&quot;: -9.55493450164795, &quot;IDs&quot;: &quot;ENSG00000100344&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.289226531982422, &quot;y&quot;: -10.120400428771973, &quot;IDs&quot;: &quot;ENSG00000100439&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.048579692840576, &quot;y&quot;: -11.119959831237793, &quot;IDs&quot;: &quot;ENSG00000100557&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6081498861312866, &quot;y&quot;: -8.903910636901855, &quot;IDs&quot;: &quot;ENSG00000100767&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.957587242126465, &quot;y&quot;: -7.624592304229736, &quot;IDs&quot;: &quot;ENSG00000101349&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.395137786865234, &quot;y&quot;: -11.58598518371582, &quot;IDs&quot;: &quot;ENSG00000101412&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.9926230907440186, &quot;y&quot;: -8.23487663269043, &quot;IDs&quot;: &quot;ENSG00000101417&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.031565189361572, &quot;y&quot;: -11.336329460144043, &quot;IDs&quot;: &quot;ENSG00000101445&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.322498798370361, &quot;y&quot;: -12.647976875305176, &quot;IDs&quot;: &quot;ENSG00000101489&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.241640090942383, &quot;y&quot;: -11.229630470275879, &quot;IDs&quot;: &quot;ENSG00000101746&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.97202730178833, &quot;y&quot;: -8.53502082824707, &quot;IDs&quot;: &quot;ENSG00000102053&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.4397263526916504, &quot;y&quot;: -9.232610702514648, &quot;IDs&quot;: &quot;ENSG00000102468&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8785920143127441, &quot;y&quot;: -11.431490898132324, &quot;IDs&quot;: &quot;ENSG00000102678&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.307574510574341, &quot;y&quot;: -11.788713455200195, &quot;IDs&quot;: &quot;ENSG00000102981&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5667445659637451, &quot;y&quot;: -9.614177703857422, &quot;IDs&quot;: &quot;ENSG00000102984&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.20290109515190125, &quot;y&quot;: -8.807953834533691, &quot;IDs&quot;: &quot;ENSG00000103269&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.0210649967193604, &quot;y&quot;: -12.014585494995117, &quot;IDs&quot;: &quot;ENSG00000103522&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.927441596984863, &quot;y&quot;: -8.881351470947266, &quot;IDs&quot;: &quot;ENSG00000103528&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.521679401397705, &quot;y&quot;: -7.463883876800537, &quot;IDs&quot;: &quot;ENSG00000103995&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.641444683074951, &quot;y&quot;: -11.487876892089844, &quot;IDs&quot;: &quot;ENSG00000104093&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.271310567855835, &quot;y&quot;: -9.9212064743042, &quot;IDs&quot;: &quot;ENSG00000104490&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.199883937835693, &quot;y&quot;: -11.505495071411133, &quot;IDs&quot;: &quot;ENSG00000105173&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.308649480342865, &quot;y&quot;: -7.803463459014893, &quot;IDs&quot;: &quot;ENSG00000105479&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.522898197174072, &quot;y&quot;: -9.080994606018066, &quot;IDs&quot;: &quot;ENSG00000105550&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6663103103637695, &quot;y&quot;: -12.79790210723877, &quot;IDs&quot;: &quot;ENSG00000105711&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3728835582733154, &quot;y&quot;: -8.959444046020508, &quot;IDs&quot;: &quot;ENSG00000105967&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.268185615539551, &quot;y&quot;: -8.200973510742188, &quot;IDs&quot;: &quot;ENSG00000105991&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0034408569335938, &quot;y&quot;: -10.8634614944458, &quot;IDs&quot;: &quot;ENSG00000105997&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.082028865814209, &quot;y&quot;: -7.749909400939941, &quot;IDs&quot;: &quot;ENSG00000106006&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.91740083694458, &quot;y&quot;: -10.303682327270508, &quot;IDs&quot;: &quot;ENSG00000106031&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5362563133239746, &quot;y&quot;: -9.865043640136719, &quot;IDs&quot;: &quot;ENSG00000106415&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.623473167419434, &quot;y&quot;: -10.592582702636719, &quot;IDs&quot;: &quot;ENSG00000106483&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.03005313873291, &quot;y&quot;: -8.169623374938965, &quot;IDs&quot;: &quot;ENSG00000106536&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0789642333984375, &quot;y&quot;: -9.828771591186523, &quot;IDs&quot;: &quot;ENSG00000106546&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.199305772781372, &quot;y&quot;: -9.79089641571045, &quot;IDs&quot;: &quot;ENSG00000106560&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.4964923858642578, &quot;y&quot;: -11.271322250366211, &quot;IDs&quot;: &quot;ENSG00000106689&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.82089900970459, &quot;y&quot;: -10.737290382385254, &quot;IDs&quot;: &quot;ENSG00000106823&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.868072032928467, &quot;y&quot;: -8.371830940246582, &quot;IDs&quot;: &quot;ENSG00000107105&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.8454999923706055, &quot;y&quot;: -8.484923362731934, &quot;IDs&quot;: &quot;ENSG00000107242&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.520200252532959, &quot;y&quot;: -10.729981422424316, &quot;IDs&quot;: &quot;ENSG00000107551&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.9136252403259277, &quot;y&quot;: -11.883868217468262, &quot;IDs&quot;: &quot;ENSG00000107562&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7882252931594849, &quot;y&quot;: -8.659167289733887, &quot;IDs&quot;: &quot;ENSG00000107742&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8113174438476562, &quot;y&quot;: -10.661144256591797, &quot;IDs&quot;: &quot;ENSG00000107807&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.752451479434967, &quot;y&quot;: -9.346420288085938, &quot;IDs&quot;: &quot;ENSG00000107968&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.493586301803589, &quot;y&quot;: -8.426957130432129, &quot;IDs&quot;: &quot;ENSG00000108239&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.401412487030029, &quot;y&quot;: -11.778642654418945, &quot;IDs&quot;: &quot;ENSG00000108387&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.556365966796875, &quot;y&quot;: -12.108016014099121, &quot;IDs&quot;: &quot;ENSG00000108684&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.468421459197998, &quot;y&quot;: -7.468580722808838, &quot;IDs&quot;: &quot;ENSG00000108799&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.5636982917785645, &quot;y&quot;: -12.032264709472656, &quot;IDs&quot;: &quot;ENSG00000108823&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.168055534362793, &quot;y&quot;: -7.748771667480469, &quot;IDs&quot;: &quot;ENSG00000109103&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.74830961227417, &quot;y&quot;: -11.51417064666748, &quot;IDs&quot;: &quot;ENSG00000109265&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.030416965484619, &quot;y&quot;: -11.633831977844238, &quot;IDs&quot;: &quot;ENSG00000109458&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0757068395614624, &quot;y&quot;: -8.768865585327148, &quot;IDs&quot;: &quot;ENSG00000109501&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.921316623687744, &quot;y&quot;: -8.37784481048584, &quot;IDs&quot;: &quot;ENSG00000109654&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3272595405578613, &quot;y&quot;: -7.888548851013184, &quot;IDs&quot;: &quot;ENSG00000109680&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.111717700958252, &quot;y&quot;: -9.711446762084961, &quot;IDs&quot;: &quot;ENSG00000109738&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3224104642868042, &quot;y&quot;: -10.912261962890625, &quot;IDs&quot;: &quot;ENSG00000109758&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3502172231674194, &quot;y&quot;: -8.577269554138184, &quot;IDs&quot;: &quot;ENSG00000110171&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.633596897125244, &quot;y&quot;: -7.396799087524414, &quot;IDs&quot;: &quot;ENSG00000110237&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9464991092681885, &quot;y&quot;: -8.17938232421875, &quot;IDs&quot;: &quot;ENSG00000110675&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.815361499786377, &quot;y&quot;: -11.916661262512207, &quot;IDs&quot;: &quot;ENSG00000110693&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2604010105133057, &quot;y&quot;: -12.935291290283203, &quot;IDs&quot;: &quot;ENSG00000111181&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.059199333190918, &quot;y&quot;: -8.842339515686035, &quot;IDs&quot;: &quot;ENSG00000111554&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.021914947777986526, &quot;y&quot;: -8.67856502532959, &quot;IDs&quot;: &quot;ENSG00000111801&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.4331387281417847, &quot;y&quot;: -9.461335182189941, &quot;IDs&quot;: &quot;ENSG00000111816&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.310153961181641, &quot;y&quot;: -7.021414279937744, &quot;IDs&quot;: &quot;ENSG00000111879&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.700059413909912, &quot;y&quot;: -8.421051979064941, &quot;IDs&quot;: &quot;ENSG00000111912&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.019253969192505, &quot;y&quot;: -12.56938648223877, &quot;IDs&quot;: &quot;ENSG00000112812&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.4765777587890625, &quot;y&quot;: -10.17968463897705, &quot;IDs&quot;: &quot;ENSG00000112902&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.982555866241455, &quot;y&quot;: -12.204232215881348, &quot;IDs&quot;: &quot;ENSG00000112964&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3037161827087402, &quot;y&quot;: -10.769021034240723, &quot;IDs&quot;: &quot;ENSG00000113248&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.800053119659424, &quot;y&quot;: -8.378091812133789, &quot;IDs&quot;: &quot;ENSG00000113790&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.398469924926758, &quot;y&quot;: -11.618391036987305, &quot;IDs&quot;: &quot;ENSG00000114698&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.390526533126831, &quot;y&quot;: -11.469605445861816, &quot;IDs&quot;: &quot;ENSG00000115267&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.558255672454834, &quot;y&quot;: -11.627729415893555, &quot;IDs&quot;: &quot;ENSG00000115392&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6792945861816406, &quot;y&quot;: -13.013473510742188, &quot;IDs&quot;: &quot;ENSG00000115902&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.035466194152832, &quot;y&quot;: -11.975323677062988, &quot;IDs&quot;: &quot;ENSG00000116031&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4498560428619385, &quot;y&quot;: -11.918740272521973, &quot;IDs&quot;: &quot;ENSG00000116035&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.232006072998047, &quot;y&quot;: -10.7122163772583, &quot;IDs&quot;: &quot;ENSG00000116574&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1529428958892822, &quot;y&quot;: -11.879408836364746, &quot;IDs&quot;: &quot;ENSG00000116785&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.276859760284424, &quot;y&quot;: -9.935510635375977, &quot;IDs&quot;: &quot;ENSG00000117016&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6580631732940674, &quot;y&quot;: -12.771049499511719, &quot;IDs&quot;: &quot;ENSG00000117600&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3444080352783203, &quot;y&quot;: -8.446112632751465, &quot;IDs&quot;: &quot;ENSG00000118407&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.874420166015625, &quot;y&quot;: -8.097186088562012, &quot;IDs&quot;: &quot;ENSG00000118946&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.961962699890137, &quot;y&quot;: -8.45373821258545, &quot;IDs&quot;: &quot;ENSG00000119280&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.438577175140381, &quot;y&quot;: -11.465315818786621, &quot;IDs&quot;: &quot;ENSG00000119640&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2906010150909424, &quot;y&quot;: -10.79020881652832, &quot;IDs&quot;: &quot;ENSG00000119699&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.8773193359375, &quot;y&quot;: -10.07408618927002, &quot;IDs&quot;: &quot;ENSG00000119899&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8723538517951965, &quot;y&quot;: -8.844581604003906, &quot;IDs&quot;: &quot;ENSG00000119922&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.1397228240966797, &quot;y&quot;: -11.816865921020508, &quot;IDs&quot;: &quot;ENSG00000119943&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.6765594482421875, &quot;y&quot;: -10.418784141540527, &quot;IDs&quot;: &quot;ENSG00000120162&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.295313358306885, &quot;y&quot;: -9.023528099060059, &quot;IDs&quot;: &quot;ENSG00000120278&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.8637754917144775, &quot;y&quot;: -8.615059852600098, &quot;IDs&quot;: &quot;ENSG00000120658&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.221261501312256, &quot;y&quot;: -9.179981231689453, &quot;IDs&quot;: &quot;ENSG00000120907&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.913684368133545, &quot;y&quot;: -6.900423526763916, &quot;IDs&quot;: &quot;ENSG00000121068&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.9707136154174805, &quot;y&quot;: -8.684904098510742, &quot;IDs&quot;: &quot;ENSG00000121075&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.0109686851501465, &quot;y&quot;: -7.545958042144775, &quot;IDs&quot;: &quot;ENSG00000121690&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.676203727722168, &quot;y&quot;: -12.291528701782227, &quot;IDs&quot;: &quot;ENSG00000123201&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.670708656311035, &quot;y&quot;: -9.853269577026367, &quot;IDs&quot;: &quot;ENSG00000123700&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8506951332092285, &quot;y&quot;: -8.970494270324707, &quot;IDs&quot;: &quot;ENSG00000125434&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.682395935058594, &quot;y&quot;: -7.820058345794678, &quot;IDs&quot;: &quot;ENSG00000125533&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.515620470046997, &quot;y&quot;: -9.081197738647461, &quot;IDs&quot;: &quot;ENSG00000125631&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.0171289443969727, &quot;y&quot;: -7.6585164070129395, &quot;IDs&quot;: &quot;ENSG00000125787&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4583663940429688, &quot;y&quot;: -11.097025871276855, &quot;IDs&quot;: &quot;ENSG00000125848&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6490156650543213, &quot;y&quot;: -11.303197860717773, &quot;IDs&quot;: &quot;ENSG00000125910&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.407745122909546, &quot;y&quot;: -11.453153610229492, &quot;IDs&quot;: &quot;ENSG00000125965&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.426283359527588, &quot;y&quot;: -7.4315056800842285, &quot;IDs&quot;: &quot;ENSG00000126016&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0582385063171387, &quot;y&quot;: -11.768844604492188, &quot;IDs&quot;: &quot;ENSG00000126246&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.2649641036987305, &quot;y&quot;: -9.640547752380371, &quot;IDs&quot;: &quot;ENSG00000127084&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.569664001464844, &quot;y&quot;: -7.4886040687561035, &quot;IDs&quot;: &quot;ENSG00000127220&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.046189069747925, &quot;y&quot;: -8.034101486206055, &quot;IDs&quot;: &quot;ENSG00000127249&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.448908805847168, &quot;y&quot;: -9.120843887329102, &quot;IDs&quot;: &quot;ENSG00000128165&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6874468326568604, &quot;y&quot;: -9.410780906677246, &quot;IDs&quot;: &quot;ENSG00000128271&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.109541654586792, &quot;y&quot;: -8.151597023010254, &quot;IDs&quot;: &quot;ENSG00000128298&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.40960264205932617, &quot;y&quot;: -10.950075149536133, &quot;IDs&quot;: &quot;ENSG00000128573&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.059564113616943, &quot;y&quot;: -10.541555404663086, &quot;IDs&quot;: &quot;ENSG00000128604&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.996156930923462, &quot;y&quot;: -10.906353950500488, &quot;IDs&quot;: &quot;ENSG00000128606&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7359817028045654, &quot;y&quot;: -11.275262832641602, &quot;IDs&quot;: &quot;ENSG00000128652&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.6269516944885254, &quot;y&quot;: -7.853909015655518, &quot;IDs&quot;: &quot;ENSG00000128655&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.3135596811771393, &quot;y&quot;: -11.000892639160156, &quot;IDs&quot;: &quot;ENSG00000128965&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3030403852462769, &quot;y&quot;: -12.182933807373047, &quot;IDs&quot;: &quot;ENSG00000129159&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.510432720184326, &quot;y&quot;: -8.70455551147461, &quot;IDs&quot;: &quot;ENSG00000129474&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6695289611816406, &quot;y&quot;: -11.142068862915039, &quot;IDs&quot;: &quot;ENSG00000129757&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.133620262145996, &quot;y&quot;: -12.463996887207031, &quot;IDs&quot;: &quot;ENSG00000129988&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.5710015296936035, &quot;y&quot;: -9.659590721130371, &quot;IDs&quot;: &quot;ENSG00000129993&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.496036052703857, &quot;y&quot;: -10.078298568725586, &quot;IDs&quot;: &quot;ENSG00000130045&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.1672325134277344, &quot;y&quot;: -11.4641695022583, &quot;IDs&quot;: &quot;ENSG00000130517&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.165756940841675, &quot;y&quot;: -11.655447959899902, &quot;IDs&quot;: &quot;ENSG00000130522&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0652369260787964, &quot;y&quot;: -8.902441024780273, &quot;IDs&quot;: &quot;ENSG00000130684&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.954980373382568, &quot;y&quot;: -9.204113006591797, &quot;IDs&quot;: &quot;ENSG00000130734&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.3927788734436035, &quot;y&quot;: -8.943428993225098, &quot;IDs&quot;: &quot;ENSG00000130783&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9338332414627075, &quot;y&quot;: -12.229775428771973, &quot;IDs&quot;: &quot;ENSG00000130876&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.432431221008301, &quot;y&quot;: -11.6989107131958, &quot;IDs&quot;: &quot;ENSG00000131669&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7474194169044495, &quot;y&quot;: -9.136083602905273, &quot;IDs&quot;: &quot;ENSG00000131797&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.030505657196045, &quot;y&quot;: -11.592771530151367, &quot;IDs&quot;: &quot;ENSG00000132164&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2718262672424316, &quot;y&quot;: -8.42711353302002, &quot;IDs&quot;: &quot;ENSG00000132196&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1866111755371094, &quot;y&quot;: -9.977782249450684, &quot;IDs&quot;: &quot;ENSG00000132517&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1615716218948364, &quot;y&quot;: -8.431767463684082, &quot;IDs&quot;: &quot;ENSG00000132793&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.016561031341553, &quot;y&quot;: -12.963062286376953, &quot;IDs&quot;: &quot;ENSG00000132854&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1227525472640991, &quot;y&quot;: -10.840445518493652, &quot;IDs&quot;: &quot;ENSG00000132879&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.0418853759765625, &quot;y&quot;: -10.647367477416992, &quot;IDs&quot;: &quot;ENSG00000132975&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.809439659118652, &quot;y&quot;: -7.8761820793151855, &quot;IDs&quot;: &quot;ENSG00000133056&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.4166595935821533, &quot;y&quot;: -10.57119369506836, &quot;IDs&quot;: &quot;ENSG00000133247&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6005464792251587, &quot;y&quot;: -10.593663215637207, &quot;IDs&quot;: &quot;ENSG00000133475&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.841945171356201, &quot;y&quot;: -8.490523338317871, &quot;IDs&quot;: &quot;ENSG00000133985&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.1530494689941406, &quot;y&quot;: -10.662500381469727, &quot;IDs&quot;: &quot;ENSG00000134253&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9214115142822266, &quot;y&quot;: -9.034881591796875, &quot;IDs&quot;: &quot;ENSG00000134297&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9238743782043457, &quot;y&quot;: -8.005610466003418, &quot;IDs&quot;: &quot;ENSG00000134317&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9954405426979065, &quot;y&quot;: -10.729873657226562, &quot;IDs&quot;: &quot;ENSG00000134574&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.559592247009277, &quot;y&quot;: -8.950840950012207, &quot;IDs&quot;: &quot;ENSG00000134769&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2876880168914795, &quot;y&quot;: -12.785806655883789, &quot;IDs&quot;: &quot;ENSG00000134986&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.1584064960479736, &quot;y&quot;: -11.078319549560547, &quot;IDs&quot;: &quot;ENSG00000135063&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.5887415409088135, &quot;y&quot;: -9.323307037353516, &quot;IDs&quot;: &quot;ENSG00000135315&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.033690452575684, &quot;y&quot;: -9.550885200500488, &quot;IDs&quot;: &quot;ENSG00000135378&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.443942546844482, &quot;y&quot;: -11.096516609191895, &quot;IDs&quot;: &quot;ENSG00000135835&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9430056810379028, &quot;y&quot;: -10.993348121643066, &quot;IDs&quot;: &quot;ENSG00000135917&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.484119415283203, &quot;y&quot;: -7.266012668609619, &quot;IDs&quot;: &quot;ENSG00000135973&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.034214973449707, &quot;y&quot;: -8.64435863494873, &quot;IDs&quot;: &quot;ENSG00000136237&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.620837926864624, &quot;y&quot;: -12.293447494506836, &quot;IDs&quot;: &quot;ENSG00000136352&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.719097137451172, &quot;y&quot;: -10.471040725708008, &quot;IDs&quot;: &quot;ENSG00000136514&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9414694309234619, &quot;y&quot;: -9.451040267944336, &quot;IDs&quot;: &quot;ENSG00000136531&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.499431133270264, &quot;y&quot;: -11.655240058898926, &quot;IDs&quot;: &quot;ENSG00000136867&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.294694185256958, &quot;y&quot;: -10.684617042541504, &quot;IDs&quot;: &quot;ENSG00000137090&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.31918478012085, &quot;y&quot;: -8.629376411437988, &quot;IDs&quot;: &quot;ENSG00000137103&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.442050933837891, &quot;y&quot;: -7.1437458992004395, &quot;IDs&quot;: &quot;ENSG00000137266&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6716192960739136, &quot;y&quot;: -10.788620948791504, &quot;IDs&quot;: &quot;ENSG00000137310&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8933284282684326, &quot;y&quot;: -11.421880722045898, &quot;IDs&quot;: &quot;ENSG00000137393&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.546238422393799, &quot;y&quot;: -8.50147819519043, &quot;IDs&quot;: &quot;ENSG00000137502&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.944973945617676, &quot;y&quot;: -8.582296371459961, &quot;IDs&quot;: &quot;ENSG00000137561&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.0460309982299805, &quot;y&quot;: -12.086691856384277, &quot;IDs&quot;: &quot;ENSG00000137834&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.7386980056762695, &quot;y&quot;: -9.458963394165039, &quot;IDs&quot;: &quot;ENSG00000137878&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.929666519165039, &quot;y&quot;: -11.412078857421875, &quot;IDs&quot;: &quot;ENSG00000138030&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.544569492340088, &quot;y&quot;: -11.870173454284668, &quot;IDs&quot;: &quot;ENSG00000138346&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5291445851325989, &quot;y&quot;: -9.376885414123535, &quot;IDs&quot;: &quot;ENSG00000138376&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.106237411499023, &quot;y&quot;: -8.59837532043457, &quot;IDs&quot;: &quot;ENSG00000138449&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.121943950653076, &quot;y&quot;: -11.135174751281738, &quot;IDs&quot;: &quot;ENSG00000138496&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5185021758079529, &quot;y&quot;: -7.418433666229248, &quot;IDs&quot;: &quot;ENSG00000138639&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7167177200317383, &quot;y&quot;: -11.127585411071777, &quot;IDs&quot;: &quot;ENSG00000138735&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.786479949951172, &quot;y&quot;: -8.484529495239258, &quot;IDs&quot;: &quot;ENSG00000139174&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9129504561424255, &quot;y&quot;: -9.724004745483398, &quot;IDs&quot;: &quot;ENSG00000139190&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.985132217407227, &quot;y&quot;: -10.980423927307129, &quot;IDs&quot;: &quot;ENSG00000139269&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.156521797180176, &quot;y&quot;: -7.496598243713379, &quot;IDs&quot;: &quot;ENSG00000139835&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.185556173324585, &quot;y&quot;: -12.177473068237305, &quot;IDs&quot;: &quot;ENSG00000139910&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8169163465499878, &quot;y&quot;: -9.254739761352539, &quot;IDs&quot;: &quot;ENSG00000140022&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.170714855194092, &quot;y&quot;: -10.713846206665039, &quot;IDs&quot;: &quot;ENSG00000140090&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.38683512806892395, &quot;y&quot;: -8.37919807434082, &quot;IDs&quot;: &quot;ENSG00000140839&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.759140968322754, &quot;y&quot;: -10.427350044250488, &quot;IDs&quot;: &quot;ENSG00000141034&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.147973537445068, &quot;y&quot;: -8.834612846374512, &quot;IDs&quot;: &quot;ENSG00000141068&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6795506477355957, &quot;y&quot;: -7.522983551025391, &quot;IDs&quot;: &quot;ENSG00000141391&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.946145057678223, &quot;y&quot;: -7.097726345062256, &quot;IDs&quot;: &quot;ENSG00000141401&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.676717281341553, &quot;y&quot;: -7.940615653991699, &quot;IDs&quot;: &quot;ENSG00000141441&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.45547342300415, &quot;y&quot;: -11.359906196594238, &quot;IDs&quot;: &quot;ENSG00000141449&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.2986881732940674, &quot;y&quot;: -7.816126823425293, &quot;IDs&quot;: &quot;ENSG00000141574&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7941150665283203, &quot;y&quot;: -8.769433975219727, &quot;IDs&quot;: &quot;ENSG00000141738&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.34565964341163635, &quot;y&quot;: -10.060967445373535, &quot;IDs&quot;: &quot;ENSG00000141854&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.371767520904541, &quot;y&quot;: -8.749699592590332, &quot;IDs&quot;: &quot;ENSG00000142065&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.569696426391602, &quot;y&quot;: -11.913595199584961, &quot;IDs&quot;: &quot;ENSG00000142149&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.167979717254639, &quot;y&quot;: -9.228537559509277, &quot;IDs&quot;: &quot;ENSG00000142327&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.956481456756592, &quot;y&quot;: -7.633088111877441, &quot;IDs&quot;: &quot;ENSG00000142459&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.2981419563293457, &quot;y&quot;: -9.007612228393555, &quot;IDs&quot;: &quot;ENSG00000142677&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.146370887756348, &quot;y&quot;: -8.681695938110352, &quot;IDs&quot;: &quot;ENSG00000143013&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.256073474884033, &quot;y&quot;: -11.30278205871582, &quot;IDs&quot;: &quot;ENSG00000143105&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9166573882102966, &quot;y&quot;: -8.275121688842773, &quot;IDs&quot;: &quot;ENSG00000143178&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.041196610778570175, &quot;y&quot;: -8.916780471801758, &quot;IDs&quot;: &quot;ENSG00000143184&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5905492901802063, &quot;y&quot;: -9.327536582946777, &quot;IDs&quot;: &quot;ENSG00000143217&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.2535817623138428, &quot;y&quot;: -8.429149627685547, &quot;IDs&quot;: &quot;ENSG00000143367&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.014306771568953991, &quot;y&quot;: -9.198458671569824, &quot;IDs&quot;: &quot;ENSG00000143630&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1412789821624756, &quot;y&quot;: -9.905160903930664, &quot;IDs&quot;: &quot;ENSG00000143847&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0445449352264404, &quot;y&quot;: -11.263876914978027, &quot;IDs&quot;: &quot;ENSG00000144026&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.417420387268066, &quot;y&quot;: -12.45838451385498, &quot;IDs&quot;: &quot;ENSG00000144227&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9641308784484863, &quot;y&quot;: -8.434775352478027, &quot;IDs&quot;: &quot;ENSG00000144362&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.07658672332763672, &quot;y&quot;: -7.687587261199951, &quot;IDs&quot;: &quot;ENSG00000144460&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.349400520324707, &quot;y&quot;: -11.553264617919922, &quot;IDs&quot;: &quot;ENSG00000144485&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4710917472839355, &quot;y&quot;: -11.029619216918945, &quot;IDs&quot;: &quot;ENSG00000144791&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.1245080754160881, &quot;y&quot;: -8.501331329345703, &quot;IDs&quot;: &quot;ENSG00000144792&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.297956705093384, &quot;y&quot;: -9.606318473815918, &quot;IDs&quot;: &quot;ENSG00000144852&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.980071067810059, &quot;y&quot;: -8.648503303527832, &quot;IDs&quot;: &quot;ENSG00000145284&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3135900497436523, &quot;y&quot;: -7.323862552642822, &quot;IDs&quot;: &quot;ENSG00000145506&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.596548080444336, &quot;y&quot;: -7.220803737640381, &quot;IDs&quot;: &quot;ENSG00000145687&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.0381786823272705, &quot;y&quot;: -11.671758651733398, &quot;IDs&quot;: &quot;ENSG00000145779&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6075246334075928, &quot;y&quot;: -12.881574630737305, &quot;IDs&quot;: &quot;ENSG00000145861&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1553051471710205, &quot;y&quot;: -11.423480033874512, &quot;IDs&quot;: &quot;ENSG00000145864&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1285059452056885, &quot;y&quot;: -10.210820198059082, &quot;IDs&quot;: &quot;ENSG00000146021&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.63657283782959, &quot;y&quot;: -11.3800630569458, &quot;IDs&quot;: &quot;ENSG00000146233&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.2565901279449463, &quot;y&quot;: -7.783274173736572, &quot;IDs&quot;: &quot;ENSG00000146411&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.317742824554443, &quot;y&quot;: -11.42119312286377, &quot;IDs&quot;: &quot;ENSG00000146733&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7458667755126953, &quot;y&quot;: -12.829981803894043, &quot;IDs&quot;: &quot;ENSG00000147003&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.565661430358887, &quot;y&quot;: -11.223570823669434, &quot;IDs&quot;: &quot;ENSG00000147246&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.253787040710449, &quot;y&quot;: -13.04443645477295, &quot;IDs&quot;: &quot;ENSG00000147852&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.673344612121582, &quot;y&quot;: -11.684502601623535, &quot;IDs&quot;: &quot;ENSG00000148408&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.174377679824829, &quot;y&quot;: -12.295914649963379, &quot;IDs&quot;: &quot;ENSG00000148483&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.096529483795166, &quot;y&quot;: -8.78370189666748, &quot;IDs&quot;: &quot;ENSG00000148541&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.23979078233242035, &quot;y&quot;: -8.090986251831055, &quot;IDs&quot;: &quot;ENSG00000149043&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.075979232788086, &quot;y&quot;: -10.800601959228516, &quot;IDs&quot;: &quot;ENSG00000149090&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0929653644561768, &quot;y&quot;: -7.9592413902282715, &quot;IDs&quot;: &quot;ENSG00000149212&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9487810134887695, &quot;y&quot;: -8.243660926818848, &quot;IDs&quot;: &quot;ENSG00000149573&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.4900946617126465, &quot;y&quot;: -11.809715270996094, &quot;IDs&quot;: &quot;ENSG00000149636&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.974623203277588, &quot;y&quot;: -8.17248249053955, &quot;IDs&quot;: &quot;ENSG00000149679&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.05778287351131439, &quot;y&quot;: -8.748493194580078, &quot;IDs&quot;: &quot;ENSG00000149922&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.318441152572632, &quot;y&quot;: -11.08431339263916, &quot;IDs&quot;: &quot;ENSG00000150394&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.747918605804443, &quot;y&quot;: -7.3498029708862305, &quot;IDs&quot;: &quot;ENSG00000150510&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7736241817474365, &quot;y&quot;: -12.290945053100586, &quot;IDs&quot;: &quot;ENSG00000150637&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5846338272094727, &quot;y&quot;: -9.173911094665527, &quot;IDs&quot;: &quot;ENSG00000151365&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.5642343759536743, &quot;y&quot;: -8.354656219482422, &quot;IDs&quot;: &quot;ENSG00000151687&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.319819450378418, &quot;y&quot;: -11.76353645324707, &quot;IDs&quot;: &quot;ENSG00000151692&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.415783405303955, &quot;y&quot;: -7.7849225997924805, &quot;IDs&quot;: &quot;ENSG00000151790&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.954485535621643, &quot;y&quot;: -12.546552658081055, &quot;IDs&quot;: &quot;ENSG00000151838&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.928938627243042, &quot;y&quot;: -12.20642375946045, &quot;IDs&quot;: &quot;ENSG00000151882&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.342388868331909, &quot;y&quot;: -8.498396873474121, &quot;IDs&quot;: &quot;ENSG00000151967&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.17418098449707, &quot;y&quot;: -12.345725059509277, &quot;IDs&quot;: &quot;ENSG00000152672&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6272919178009033, &quot;y&quot;: -13.029535293579102, &quot;IDs&quot;: &quot;ENSG00000152779&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.4354259967803955, &quot;y&quot;: -8.027621269226074, &quot;IDs&quot;: &quot;ENSG00000152782&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.02215840108692646, &quot;y&quot;: -7.634512424468994, &quot;IDs&quot;: &quot;ENSG00000152910&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.577620267868042, &quot;y&quot;: -11.075470924377441, &quot;IDs&quot;: &quot;ENSG00000153291&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.791114807128906, &quot;y&quot;: -10.166468620300293, &quot;IDs&quot;: &quot;ENSG00000153823&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.715384006500244, &quot;y&quot;: -12.906994819641113, &quot;IDs&quot;: &quot;ENSG00000153930&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.267331123352051, &quot;y&quot;: -8.950370788574219, &quot;IDs&quot;: &quot;ENSG00000153982&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9420650005340576, &quot;y&quot;: -12.402998924255371, &quot;IDs&quot;: &quot;ENSG00000154274&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.720947742462158, &quot;y&quot;: -12.74852180480957, &quot;IDs&quot;: &quot;ENSG00000154330&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8554980754852295, &quot;y&quot;: -11.329941749572754, &quot;IDs&quot;: &quot;ENSG00000154760&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.8152666091918945, &quot;y&quot;: -8.859368324279785, &quot;IDs&quot;: &quot;ENSG00000154917&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.987641334533691, &quot;y&quot;: -8.528573989868164, &quot;IDs&quot;: &quot;ENSG00000156052&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.988703966140747, &quot;y&quot;: -12.1694917678833, &quot;IDs&quot;: &quot;ENSG00000156689&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.664691686630249, &quot;y&quot;: -11.122660636901855, &quot;IDs&quot;: &quot;ENSG00000156869&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.142344951629639, &quot;y&quot;: -12.121569633483887, &quot;IDs&quot;: &quot;ENSG00000157152&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7605535984039307, &quot;y&quot;: -7.319158554077148, &quot;IDs&quot;: &quot;ENSG00000157353&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.157924175262451, &quot;y&quot;: -8.3425874710083, &quot;IDs&quot;: &quot;ENSG00000157514&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.461301803588867, &quot;y&quot;: -9.312278747558594, &quot;IDs&quot;: &quot;ENSG00000157851&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5869674682617188, &quot;y&quot;: -10.077655792236328, &quot;IDs&quot;: &quot;ENSG00000157873&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.226867914199829, &quot;y&quot;: -9.348509788513184, &quot;IDs&quot;: &quot;ENSG00000158055&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6233922243118286, &quot;y&quot;: -9.346954345703125, &quot;IDs&quot;: &quot;ENSG00000158106&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9017375707626343, &quot;y&quot;: -10.837223052978516, &quot;IDs&quot;: &quot;ENSG00000158156&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.081458568572998, &quot;y&quot;: -11.587423324584961, &quot;IDs&quot;: &quot;ENSG00000158220&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.4288010001182556, &quot;y&quot;: -10.464791297912598, &quot;IDs&quot;: &quot;ENSG00000158813&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.400397300720215, &quot;y&quot;: -12.459880828857422, &quot;IDs&quot;: &quot;ENSG00000159259&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7072677612304688, &quot;y&quot;: -7.961960792541504, &quot;IDs&quot;: &quot;ENSG00000159921&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.913326263427734, &quot;y&quot;: -9.244927406311035, &quot;IDs&quot;: &quot;ENSG00000160094&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.4781579077243805, &quot;y&quot;: -8.209875106811523, &quot;IDs&quot;: &quot;ENSG00000160219&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5138407349586487, &quot;y&quot;: -8.90961742401123, &quot;IDs&quot;: &quot;ENSG00000160298&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.048254489898682, &quot;y&quot;: -6.588517665863037, &quot;IDs&quot;: &quot;ENSG00000161277&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.4231511354446411, &quot;y&quot;: -8.623528480529785, &quot;IDs&quot;: &quot;ENSG00000161509&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.618903160095215, &quot;y&quot;: -10.270448684692383, &quot;IDs&quot;: &quot;ENSG00000161682&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.519874095916748, &quot;y&quot;: -10.202255249023438, &quot;IDs&quot;: &quot;ENSG00000161888&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.808191299438477, &quot;y&quot;: -11.904054641723633, &quot;IDs&quot;: &quot;ENSG00000161992&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.563307762145996, &quot;y&quot;: -8.180771827697754, &quot;IDs&quot;: &quot;ENSG00000162062&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.16949677467346191, &quot;y&quot;: -7.446377754211426, &quot;IDs&quot;: &quot;ENSG00000162065&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8902499079704285, &quot;y&quot;: -9.899666786193848, &quot;IDs&quot;: &quot;ENSG00000162066&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.396551132202148, &quot;y&quot;: -10.585637092590332, &quot;IDs&quot;: &quot;ENSG00000162068&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.394586563110352, &quot;y&quot;: -8.773015022277832, &quot;IDs&quot;: &quot;ENSG00000162104&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.6084513664245605, &quot;y&quot;: -7.217309951782227, &quot;IDs&quot;: &quot;ENSG00000162437&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.057786464691162, &quot;y&quot;: -12.509946823120117, &quot;IDs&quot;: &quot;ENSG00000162496&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8115465641021729, &quot;y&quot;: -8.601147651672363, &quot;IDs&quot;: &quot;ENSG00000162572&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6919941902160645, &quot;y&quot;: -7.845815181732178, &quot;IDs&quot;: &quot;ENSG00000162599&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7066268920898438, &quot;y&quot;: -10.191821098327637, &quot;IDs&quot;: &quot;ENSG00000162643&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.990116596221924, &quot;y&quot;: -12.784576416015625, &quot;IDs&quot;: &quot;ENSG00000162687&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.797324180603027, &quot;y&quot;: -10.358139038085938, &quot;IDs&quot;: &quot;ENSG00000162733&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5996389389038086, &quot;y&quot;: -10.671697616577148, &quot;IDs&quot;: &quot;ENSG00000162782&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.604371428489685, &quot;y&quot;: -9.638075828552246, &quot;IDs&quot;: &quot;ENSG00000162981&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7044951915740967, &quot;y&quot;: -10.222846984863281, &quot;IDs&quot;: &quot;ENSG00000162989&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.997159719467163, &quot;y&quot;: -11.380346298217773, &quot;IDs&quot;: &quot;ENSG00000162997&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.941000461578369, &quot;y&quot;: -12.087454795837402, &quot;IDs&quot;: &quot;ENSG00000163285&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.6990786790847778, &quot;y&quot;: -10.47556209564209, &quot;IDs&quot;: &quot;ENSG00000163328&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3995462656021118, &quot;y&quot;: -12.092087745666504, &quot;IDs&quot;: &quot;ENSG00000163406&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.207082271575928, &quot;y&quot;: -8.807367324829102, &quot;IDs&quot;: &quot;ENSG00000163491&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.817915916442871, &quot;y&quot;: -7.486954689025879, &quot;IDs&quot;: &quot;ENSG00000163517&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.952723503112793, &quot;y&quot;: -8.518070220947266, &quot;IDs&quot;: &quot;ENSG00000163629&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.118683338165283, &quot;y&quot;: -12.392924308776855, &quot;IDs&quot;: &quot;ENSG00000163633&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6013174057006836, &quot;y&quot;: -8.938556671142578, &quot;IDs&quot;: &quot;ENSG00000163840&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.820822834968567, &quot;y&quot;: -11.698145866394043, &quot;IDs&quot;: &quot;ENSG00000163864&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.454081058502197, &quot;y&quot;: -9.878692626953125, &quot;IDs&quot;: &quot;ENSG00000164061&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.383610725402832, &quot;y&quot;: -10.444465637207031, &quot;IDs&quot;: &quot;ENSG00000164220&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.9540178775787354, &quot;y&quot;: -9.556127548217773, &quot;IDs&quot;: &quot;ENSG00000164342&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9392752647399902, &quot;y&quot;: -8.898184776306152, &quot;IDs&quot;: &quot;ENSG00000164542&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.436354160308838, &quot;y&quot;: -9.758240699768066, &quot;IDs&quot;: &quot;ENSG00000164938&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.968077659606934, &quot;y&quot;: -6.907569885253906, &quot;IDs&quot;: &quot;ENSG00000165113&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.587580680847168, &quot;y&quot;: -11.178716659545898, &quot;IDs&quot;: &quot;ENSG00000165152&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.224936008453369, &quot;y&quot;: -11.637195587158203, &quot;IDs&quot;: &quot;ENSG00000165325&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9844768047332764, &quot;y&quot;: -9.957382202148438, &quot;IDs&quot;: &quot;ENSG00000165617&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3722009658813477, &quot;y&quot;: -13.116632461547852, &quot;IDs&quot;: &quot;ENSG00000165731&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0772650241851807, &quot;y&quot;: -9.396985054016113, &quot;IDs&quot;: &quot;ENSG00000165943&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.783900737762451, &quot;y&quot;: -8.484286308288574, &quot;IDs&quot;: &quot;ENSG00000165959&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.399890422821045, &quot;y&quot;: -8.72437572479248, &quot;IDs&quot;: &quot;ENSG00000165995&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.003931999206543, &quot;y&quot;: -8.693943977355957, &quot;IDs&quot;: &quot;ENSG00000166123&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0464624166488647, &quot;y&quot;: -11.544809341430664, &quot;IDs&quot;: &quot;ENSG00000166145&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3838987350463867, &quot;y&quot;: -8.451313018798828, &quot;IDs&quot;: &quot;ENSG00000166349&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.061048984527588, &quot;y&quot;: -11.476600646972656, &quot;IDs&quot;: &quot;ENSG00000166402&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1635425090789795, &quot;y&quot;: -11.327980995178223, &quot;IDs&quot;: &quot;ENSG00000166448&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7050187587738037, &quot;y&quot;: -11.255799293518066, &quot;IDs&quot;: &quot;ENSG00000166473&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.582965612411499, &quot;y&quot;: -9.161468505859375, &quot;IDs&quot;: &quot;ENSG00000166578&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6064398884773254, &quot;y&quot;: -11.640881538391113, &quot;IDs&quot;: &quot;ENSG00000166816&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.19287109375, &quot;y&quot;: -10.457935333251953, &quot;IDs&quot;: &quot;ENSG00000166823&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.460056304931641, &quot;y&quot;: -10.30948543548584, &quot;IDs&quot;: &quot;ENSG00000166840&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.68898344039917, &quot;y&quot;: -9.19020938873291, &quot;IDs&quot;: &quot;ENSG00000166869&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7547340393066406, &quot;y&quot;: -10.751005172729492, &quot;IDs&quot;: &quot;ENSG00000167103&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5435843467712402, &quot;y&quot;: -12.344108581542969, &quot;IDs&quot;: &quot;ENSG00000167191&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7148512005805969, &quot;y&quot;: -10.78933334350586, &quot;IDs&quot;: &quot;ENSG00000167216&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9527507424354553, &quot;y&quot;: -8.703680038452148, &quot;IDs&quot;: &quot;ENSG00000167280&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.768306732177734, &quot;y&quot;: -8.66858196258545, &quot;IDs&quot;: &quot;ENSG00000167333&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.752187728881836, &quot;y&quot;: -8.128823280334473, &quot;IDs&quot;: &quot;ENSG00000167535&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.108055591583252, &quot;y&quot;: -10.07469654083252, &quot;IDs&quot;: &quot;ENSG00000167536&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.487269878387451, &quot;y&quot;: -10.279438018798828, &quot;IDs&quot;: &quot;ENSG00000167549&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9751369953155518, &quot;y&quot;: -12.1618013381958, &quot;IDs&quot;: &quot;ENSG00000167964&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.316610813140869, &quot;y&quot;: -12.764504432678223, &quot;IDs&quot;: &quot;ENSG00000167995&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.2741765975952148, &quot;y&quot;: -9.733664512634277, &quot;IDs&quot;: &quot;ENSG00000168061&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.491899013519287, &quot;y&quot;: -7.384860515594482, &quot;IDs&quot;: &quot;ENSG00000168297&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8911612033843994, &quot;y&quot;: -7.78268575668335, &quot;IDs&quot;: &quot;ENSG00000168310&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.3672566413879395, &quot;y&quot;: -10.060656547546387, &quot;IDs&quot;: &quot;ENSG00000168484&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.2117749452590942, &quot;y&quot;: -7.6413092613220215, &quot;IDs&quot;: &quot;ENSG00000168675&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.083803653717041, &quot;y&quot;: -10.468023300170898, &quot;IDs&quot;: &quot;ENSG00000168763&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6886072158813477, &quot;y&quot;: -11.749021530151367, &quot;IDs&quot;: &quot;ENSG00000168779&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.505897045135498, &quot;y&quot;: -11.930169105529785, &quot;IDs&quot;: &quot;ENSG00000168792&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.4099263548851013, &quot;y&quot;: -9.162872314453125, &quot;IDs&quot;: &quot;ENSG00000168939&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2680513858795166, &quot;y&quot;: -10.449325561523438, &quot;IDs&quot;: &quot;ENSG00000169064&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0388723611831665, &quot;y&quot;: -11.66821002960205, &quot;IDs&quot;: &quot;ENSG00000169083&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.290643692016602, &quot;y&quot;: -9.50800895690918, &quot;IDs&quot;: &quot;ENSG00000169193&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9483065605163574, &quot;y&quot;: -9.961421012878418, &quot;IDs&quot;: &quot;ENSG00000169302&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.963719844818115, &quot;y&quot;: -9.84687328338623, &quot;IDs&quot;: &quot;ENSG00000169668&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.898820638656616, &quot;y&quot;: -9.3114595413208, &quot;IDs&quot;: &quot;ENSG00000169683&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3846461772918701, &quot;y&quot;: -9.04263973236084, &quot;IDs&quot;: &quot;ENSG00000169750&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7624313831329346, &quot;y&quot;: -9.37586784362793, &quot;IDs&quot;: &quot;ENSG00000169758&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.305039405822754, &quot;y&quot;: -10.056070327758789, &quot;IDs&quot;: &quot;ENSG00000169894&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5878214240074158, &quot;y&quot;: -11.54833698272705, &quot;IDs&quot;: &quot;ENSG00000169918&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.602459907531738, &quot;y&quot;: -7.042853832244873, &quot;IDs&quot;: &quot;ENSG00000170011&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9368252754211426, &quot;y&quot;: -9.739336013793945, &quot;IDs&quot;: &quot;ENSG00000170271&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.627800464630127, &quot;y&quot;: -8.361193656921387, &quot;IDs&quot;: &quot;ENSG00000170276&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1127963066101074, &quot;y&quot;: -10.042277336120605, &quot;IDs&quot;: &quot;ENSG00000170743&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.826193332672119, &quot;y&quot;: -10.685626983642578, &quot;IDs&quot;: &quot;ENSG00000170775&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.2794461250305176, &quot;y&quot;: -8.73988151550293, &quot;IDs&quot;: &quot;ENSG00000170827&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.800368547439575, &quot;y&quot;: -12.617114067077637, &quot;IDs&quot;: &quot;ENSG00000171105&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.0488128662109375, &quot;y&quot;: -8.755104064941406, &quot;IDs&quot;: &quot;ENSG00000171119&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7073966264724731, &quot;y&quot;: -9.412820816040039, &quot;IDs&quot;: &quot;ENSG00000171121&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.307905197143555, &quot;y&quot;: -11.65522289276123, &quot;IDs&quot;: &quot;ENSG00000171126&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.630435943603516, &quot;y&quot;: -8.932573318481445, &quot;IDs&quot;: &quot;ENSG00000171227&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7855591773986816, &quot;y&quot;: -7.758792877197266, &quot;IDs&quot;: &quot;ENSG00000171291&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.532573938369751, &quot;y&quot;: -8.06648063659668, &quot;IDs&quot;: &quot;ENSG00000171320&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.129791736602783, &quot;y&quot;: -12.003094673156738, &quot;IDs&quot;: &quot;ENSG00000171777&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.877150058746338, &quot;y&quot;: -9.567792892456055, &quot;IDs&quot;: &quot;ENSG00000172164&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0768823623657227, &quot;y&quot;: -10.994099617004395, &quot;IDs&quot;: &quot;ENSG00000172197&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5756256580352783, &quot;y&quot;: -11.658522605895996, &quot;IDs&quot;: &quot;ENSG00000172345&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.346633791923523, &quot;y&quot;: -10.65628719329834, &quot;IDs&quot;: &quot;ENSG00000172403&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.6578550338745117, &quot;y&quot;: -10.42599868774414, &quot;IDs&quot;: &quot;ENSG00000172461&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.879795551300049, &quot;y&quot;: -11.147941589355469, &quot;IDs&quot;: &quot;ENSG00000172594&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6424713730812073, &quot;y&quot;: -10.986742973327637, &quot;IDs&quot;: &quot;ENSG00000172687&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.792907238006592, &quot;y&quot;: -7.955761909484863, &quot;IDs&quot;: &quot;ENSG00000172733&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.851313591003418, &quot;y&quot;: -7.936939239501953, &quot;IDs&quot;: &quot;ENSG00000172915&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.849334239959717, &quot;y&quot;: -8.960034370422363, &quot;IDs&quot;: &quot;ENSG00000172969&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.686636447906494, &quot;y&quot;: -11.719507217407227, &quot;IDs&quot;: &quot;ENSG00000173157&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4966063499450684, &quot;y&quot;: -11.380960464477539, &quot;IDs&quot;: &quot;ENSG00000173208&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.1668609082698822, &quot;y&quot;: -8.580772399902344, &quot;IDs&quot;: &quot;ENSG00000173209&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.715719223022461, &quot;y&quot;: -12.295989990234375, &quot;IDs&quot;: &quot;ENSG00000173262&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.162156581878662, &quot;y&quot;: -8.933716773986816, &quot;IDs&quot;: &quot;ENSG00000173320&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9807454347610474, &quot;y&quot;: -8.488592147827148, &quot;IDs&quot;: &quot;ENSG00000173531&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.935474872589111, &quot;y&quot;: -9.26863956451416, &quot;IDs&quot;: &quot;ENSG00000173706&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.574970245361328, &quot;y&quot;: -10.184061050415039, &quot;IDs&quot;: &quot;ENSG00000173727&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.082688331604004, &quot;y&quot;: -11.891502380371094, &quot;IDs&quot;: &quot;ENSG00000173926&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.294658660888672, &quot;y&quot;: -12.261963844299316, &quot;IDs&quot;: &quot;ENSG00000173930&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.311164379119873, &quot;y&quot;: -8.822555541992188, &quot;IDs&quot;: &quot;ENSG00000173988&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.102412700653076, &quot;y&quot;: -8.490181922912598, &quot;IDs&quot;: &quot;ENSG00000174007&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6497201919555664, &quot;y&quot;: -10.290139198303223, &quot;IDs&quot;: &quot;ENSG00000174740&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.365805625915527, &quot;y&quot;: -10.932897567749023, &quot;IDs&quot;: &quot;ENSG00000174951&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.322658061981201, &quot;y&quot;: -9.32623291015625, &quot;IDs&quot;: &quot;ENSG00000175093&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.742119550704956, &quot;y&quot;: -10.30746078491211, &quot;IDs&quot;: &quot;ENSG00000175170&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.845705270767212, &quot;y&quot;: -11.975030899047852, &quot;IDs&quot;: &quot;ENSG00000175305&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3492934703826904, &quot;y&quot;: -12.442259788513184, &quot;IDs&quot;: &quot;ENSG00000175318&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7389566898345947, &quot;y&quot;: -7.825206756591797, &quot;IDs&quot;: &quot;ENSG00000175322&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5441486835479736, &quot;y&quot;: -12.524218559265137, &quot;IDs&quot;: &quot;ENSG00000175643&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.8666582107543945, &quot;y&quot;: -9.048059463500977, &quot;IDs&quot;: &quot;ENSG00000175785&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.48613977432251, &quot;y&quot;: -10.956010818481445, &quot;IDs&quot;: &quot;ENSG00000176046&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.8419482707977295, &quot;y&quot;: -7.527450084686279, &quot;IDs&quot;: &quot;ENSG00000176058&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.069183349609375, &quot;y&quot;: -9.794631004333496, &quot;IDs&quot;: &quot;ENSG00000176204&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.302978277206421, &quot;y&quot;: -8.118548393249512, &quot;IDs&quot;: &quot;ENSG00000176293&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3970024585723877, &quot;y&quot;: -10.361773490905762, &quot;IDs&quot;: &quot;ENSG00000176383&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5272645950317383, &quot;y&quot;: -8.730685234069824, &quot;IDs&quot;: &quot;ENSG00000176428&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3429603576660156, &quot;y&quot;: -11.44368839263916, &quot;IDs&quot;: &quot;ENSG00000176641&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7554657459259033, &quot;y&quot;: -11.525760650634766, &quot;IDs&quot;: &quot;ENSG00000176714&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.57964563369751, &quot;y&quot;: -10.454899787902832, &quot;IDs&quot;: &quot;ENSG00000176834&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7822333574295044, &quot;y&quot;: -11.988396644592285, &quot;IDs&quot;: &quot;ENSG00000176912&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.566063404083252, &quot;y&quot;: -8.617047309875488, &quot;IDs&quot;: &quot;ENSG00000176998&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.914093017578125, &quot;y&quot;: -7.412986755371094, &quot;IDs&quot;: &quot;ENSG00000177096&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1714026927947998, &quot;y&quot;: -10.675459861755371, &quot;IDs&quot;: &quot;ENSG00000177595&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.979116678237915, &quot;y&quot;: -7.5198073387146, &quot;IDs&quot;: &quot;ENSG00000177854&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.312986373901367, &quot;y&quot;: -9.9397611618042, &quot;IDs&quot;: &quot;ENSG00000178026&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9082121253013611, &quot;y&quot;: -9.0376558303833, &quot;IDs&quot;: &quot;ENSG00000178033&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.00382661819458, &quot;y&quot;: -10.658182144165039, &quot;IDs&quot;: &quot;ENSG00000178184&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.775301218032837, &quot;y&quot;: -8.812603950500488, &quot;IDs&quot;: &quot;ENSG00000178662&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6778157353401184, &quot;y&quot;: -8.97805404663086, &quot;IDs&quot;: &quot;ENSG00000178685&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9183892607688904, &quot;y&quot;: -8.126158714294434, &quot;IDs&quot;: &quot;ENSG00000178761&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.701918601989746, &quot;y&quot;: -10.292126655578613, &quot;IDs&quot;: &quot;ENSG00000178803&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.11798778921365738, &quot;y&quot;: -8.220098495483398, &quot;IDs&quot;: &quot;ENSG00000178809&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8651511669158936, &quot;y&quot;: -12.682184219360352, &quot;IDs&quot;: &quot;ENSG00000178947&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.074096918106079, &quot;y&quot;: -9.63212776184082, &quot;IDs&quot;: &quot;ENSG00000179023&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7617995738983154, &quot;y&quot;: -12.735481262207031, &quot;IDs&quot;: &quot;ENSG00000179029&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.102325677871704, &quot;y&quot;: -9.707328796386719, &quot;IDs&quot;: &quot;ENSG00000179240&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.864433765411377, &quot;y&quot;: -10.613877296447754, &quot;IDs&quot;: &quot;ENSG00000179284&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.9618000984191895, &quot;y&quot;: -8.675849914550781, &quot;IDs&quot;: &quot;ENSG00000179314&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.0780177116394043, &quot;y&quot;: -9.493897438049316, &quot;IDs&quot;: &quot;ENSG00000179397&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.468679428100586, &quot;y&quot;: -11.34766960144043, &quot;IDs&quot;: &quot;ENSG00000179571&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.6693620681762695, &quot;y&quot;: -7.870104789733887, &quot;IDs&quot;: &quot;ENSG00000179673&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.4536943435668945, &quot;y&quot;: -10.871005058288574, &quot;IDs&quot;: &quot;ENSG00000179772&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.43793249130249, &quot;y&quot;: -10.993301391601562, &quot;IDs&quot;: &quot;ENSG00000179841&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1071269512176514, &quot;y&quot;: -9.345132827758789, &quot;IDs&quot;: &quot;ENSG00000179869&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.38011360168457, &quot;y&quot;: -8.605175971984863, &quot;IDs&quot;: &quot;ENSG00000180440&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7032445073127747, &quot;y&quot;: -10.749138832092285, &quot;IDs&quot;: &quot;ENSG00000180871&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.949922561645508, &quot;y&quot;: -7.680755138397217, &quot;IDs&quot;: &quot;ENSG00000181035&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.085951805114746, &quot;y&quot;: -10.804594039916992, &quot;IDs&quot;: &quot;ENSG00000181104&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.178941488265991, &quot;y&quot;: -10.200085639953613, &quot;IDs&quot;: &quot;ENSG00000181126&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.7417778968811035, &quot;y&quot;: -10.66218090057373, &quot;IDs&quot;: &quot;ENSG00000181350&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.863063812255859, &quot;y&quot;: -8.191442489624023, &quot;IDs&quot;: &quot;ENSG00000181481&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1826977729797363, &quot;y&quot;: -8.980079650878906, &quot;IDs&quot;: &quot;ENSG00000181513&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6431127190589905, &quot;y&quot;: -9.564780235290527, &quot;IDs&quot;: &quot;ENSG00000181690&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.901579856872559, &quot;y&quot;: -7.750707626342773, &quot;IDs&quot;: &quot;ENSG00000181982&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.021773338317871, &quot;y&quot;: -11.452230453491211, &quot;IDs&quot;: &quot;ENSG00000182165&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.661845684051514, &quot;y&quot;: -11.081721305847168, &quot;IDs&quot;: &quot;ENSG00000182175&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.8179097175598145, &quot;y&quot;: -8.154995918273926, &quot;IDs&quot;: &quot;ENSG00000182255&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.080103874206543, &quot;y&quot;: -7.633356094360352, &quot;IDs&quot;: &quot;ENSG00000182263&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.434992790222168, &quot;y&quot;: -12.095072746276855, &quot;IDs&quot;: &quot;ENSG00000182902&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.397040843963623, &quot;y&quot;: -12.189676284790039, &quot;IDs&quot;: &quot;ENSG00000182916&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3993844985961914, &quot;y&quot;: -9.017624855041504, &quot;IDs&quot;: &quot;ENSG00000183196&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.26553115248680115, &quot;y&quot;: -9.463093757629395, &quot;IDs&quot;: &quot;ENSG00000183273&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.326625823974609, &quot;y&quot;: -11.451009750366211, &quot;IDs&quot;: &quot;ENSG00000183578&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8668490052223206, &quot;y&quot;: -11.495000839233398, &quot;IDs&quot;: &quot;ENSG00000183615&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8510565757751465, &quot;y&quot;: -8.278186798095703, &quot;IDs&quot;: &quot;ENSG00000183625&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7537535429000854, &quot;y&quot;: -8.449261665344238, &quot;IDs&quot;: &quot;ENSG00000183801&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.193227291107178, &quot;y&quot;: -9.31020450592041, &quot;IDs&quot;: &quot;ENSG00000183850&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3955022096633911, &quot;y&quot;: -10.334434509277344, &quot;IDs&quot;: &quot;ENSG00000183929&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.561345100402832, &quot;y&quot;: -8.408040046691895, &quot;IDs&quot;: &quot;ENSG00000184154&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.738080978393555, &quot;y&quot;: -7.214653968811035, &quot;IDs&quot;: &quot;ENSG00000184221&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.9183220863342285, &quot;y&quot;: -7.221512317657471, &quot;IDs&quot;: &quot;ENSG00000184304&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0610681772232056, &quot;y&quot;: -8.66540241241455, &quot;IDs&quot;: &quot;ENSG00000184381&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.603890895843506, &quot;y&quot;: -10.869006156921387, &quot;IDs&quot;: &quot;ENSG00000184451&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.216931104660034, &quot;y&quot;: -12.087322235107422, &quot;IDs&quot;: &quot;ENSG00000184454&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.877609729766846, &quot;y&quot;: -10.010290145874023, &quot;IDs&quot;: &quot;ENSG00000184489&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.134363651275635, &quot;y&quot;: -9.808799743652344, &quot;IDs&quot;: &quot;ENSG00000184545&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.7172136306762695, &quot;y&quot;: -9.979219436645508, &quot;IDs&quot;: &quot;ENSG00000184611&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.030088186264038, &quot;y&quot;: -8.725652694702148, &quot;IDs&quot;: &quot;ENSG00000184619&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3526530265808105, &quot;y&quot;: -12.57174301147461, &quot;IDs&quot;: &quot;ENSG00000184788&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.5854861736297607, &quot;y&quot;: -9.978363037109375, &quot;IDs&quot;: &quot;ENSG00000184898&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.463656902313232, &quot;y&quot;: -12.31147575378418, &quot;IDs&quot;: &quot;ENSG00000184916&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.268065929412842, &quot;y&quot;: -12.16392993927002, &quot;IDs&quot;: &quot;ENSG00000184979&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.954139709472656, &quot;y&quot;: -8.050749778747559, &quot;IDs&quot;: &quot;ENSG00000185436&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.135554552078247, &quot;y&quot;: -11.525056838989258, &quot;IDs&quot;: &quot;ENSG00000185495&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.277141094207764, &quot;y&quot;: -9.06478214263916, &quot;IDs&quot;: &quot;ENSG00000185652&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5898947715759277, &quot;y&quot;: -9.614225387573242, &quot;IDs&quot;: &quot;ENSG00000186094&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.227864742279053, &quot;y&quot;: -11.308976173400879, &quot;IDs&quot;: &quot;ENSG00000186283&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.092852592468262, &quot;y&quot;: -11.35744571685791, &quot;IDs&quot;: &quot;ENSG00000186479&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.182675361633301, &quot;y&quot;: -9.6526517868042, &quot;IDs&quot;: &quot;ENSG00000186496&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.134366273880005, &quot;y&quot;: -8.428311347961426, &quot;IDs&quot;: &quot;ENSG00000186675&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.359288692474365, &quot;y&quot;: -11.945769309997559, &quot;IDs&quot;: &quot;ENSG00000187068&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6879074573516846, &quot;y&quot;: -8.59301471710205, &quot;IDs&quot;: &quot;ENSG00000187266&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.466062068939209, &quot;y&quot;: -8.044888496398926, &quot;IDs&quot;: &quot;ENSG00000187486&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3563344478607178, &quot;y&quot;: -8.239285469055176, &quot;IDs&quot;: &quot;ENSG00000187609&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.553930759429932, &quot;y&quot;: -10.240011215209961, &quot;IDs&quot;: &quot;ENSG00000188322&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.223242998123169, &quot;y&quot;: -12.239483833312988, &quot;IDs&quot;: &quot;ENSG00000188338&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0524919033050537, &quot;y&quot;: -8.209288597106934, &quot;IDs&quot;: &quot;ENSG00000188385&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.569112539291382, &quot;y&quot;: -8.356466293334961, &quot;IDs&quot;: &quot;ENSG00000188501&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8702876567840576, &quot;y&quot;: -11.127610206604004, &quot;IDs&quot;: &quot;ENSG00000188523&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.4952940940856934, &quot;y&quot;: -9.696513175964355, &quot;IDs&quot;: &quot;ENSG00000188662&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.583117485046387, &quot;y&quot;: -9.74653148651123, &quot;IDs&quot;: &quot;ENSG00000188732&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.937983512878418, &quot;y&quot;: -7.90484094619751, &quot;IDs&quot;: &quot;ENSG00000188735&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1208574771881104, &quot;y&quot;: -11.499385833740234, &quot;IDs&quot;: &quot;ENSG00000188747&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7726640701293945, &quot;y&quot;: -9.903548240661621, &quot;IDs&quot;: &quot;ENSG00000188785&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0126063823699951, &quot;y&quot;: -8.35971736907959, &quot;IDs&quot;: &quot;ENSG00000188833&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.154632806777954, &quot;y&quot;: -9.0750732421875, &quot;IDs&quot;: &quot;ENSG00000188868&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.856473922729492, &quot;y&quot;: -12.3054780960083, &quot;IDs&quot;: &quot;ENSG00000188906&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.138619899749756, &quot;y&quot;: -11.224279403686523, &quot;IDs&quot;: &quot;ENSG00000188993&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.192744255065918, &quot;y&quot;: -12.06220817565918, &quot;IDs&quot;: &quot;ENSG00000189057&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.424908638000488, &quot;y&quot;: -9.730489730834961, &quot;IDs&quot;: &quot;ENSG00000189127&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.080256700515747, &quot;y&quot;: -10.521736145019531, &quot;IDs&quot;: &quot;ENSG00000189195&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.4742913246154785, &quot;y&quot;: -11.094300270080566, &quot;IDs&quot;: &quot;ENSG00000189229&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3670451641082764, &quot;y&quot;: -13.042807579040527, &quot;IDs&quot;: &quot;ENSG00000189366&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.996645450592041, &quot;y&quot;: -10.434165954589844, &quot;IDs&quot;: &quot;ENSG00000189419&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.409905910491943, &quot;y&quot;: -11.26998519897461, &quot;IDs&quot;: &quot;ENSG00000196132&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3168563842773438, &quot;y&quot;: -12.29419994354248, &quot;IDs&quot;: &quot;ENSG00000196169&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3807554244995117, &quot;y&quot;: -12.360000610351562, &quot;IDs&quot;: &quot;ENSG00000196196&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6894731521606445, &quot;y&quot;: -9.521357536315918, &quot;IDs&quot;: &quot;ENSG00000196220&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.277949810028076, &quot;y&quot;: -7.2619733810424805, &quot;IDs&quot;: &quot;ENSG00000196476&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.542743682861328, &quot;y&quot;: -7.097661972045898, &quot;IDs&quot;: &quot;ENSG00000196517&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.154508590698242, &quot;y&quot;: -10.918449401855469, &quot;IDs&quot;: &quot;ENSG00000196566&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5888867378234863, &quot;y&quot;: -8.033622741699219, &quot;IDs&quot;: &quot;ENSG00000196584&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0021418333053589, &quot;y&quot;: -9.72038745880127, &quot;IDs&quot;: &quot;ENSG00000196668&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3615574836730957, &quot;y&quot;: -8.685827255249023, &quot;IDs&quot;: &quot;ENSG00000197375&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.454848051071167, &quot;y&quot;: -12.884312629699707, &quot;IDs&quot;: &quot;ENSG00000197444&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5514063835144043, &quot;y&quot;: -9.491025924682617, &quot;IDs&quot;: &quot;ENSG00000197536&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.319690704345703, &quot;y&quot;: -8.680680274963379, &quot;IDs&quot;: &quot;ENSG00000197576&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9613664150238037, &quot;y&quot;: -11.984542846679688, &quot;IDs&quot;: &quot;ENSG00000197705&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6253936290740967, &quot;y&quot;: -11.660974502563477, &quot;IDs&quot;: &quot;ENSG00000197769&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6012239456176758, &quot;y&quot;: -11.490017890930176, &quot;IDs&quot;: &quot;ENSG00000197852&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.582329511642456, &quot;y&quot;: -10.428885459899902, &quot;IDs&quot;: &quot;ENSG00000197870&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6100896000862122, &quot;y&quot;: -11.416184425354004, &quot;IDs&quot;: &quot;ENSG00000198003&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9267462491989136, &quot;y&quot;: -7.492511749267578, &quot;IDs&quot;: &quot;ENSG00000198105&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.9496970176696777, &quot;y&quot;: -7.647417068481445, &quot;IDs&quot;: &quot;ENSG00000198155&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.979736328125, &quot;y&quot;: -8.76599407196045, &quot;IDs&quot;: &quot;ENSG00000198205&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.195281982421875, &quot;y&quot;: -11.338075637817383, &quot;IDs&quot;: &quot;ENSG00000198354&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.4994988441467285, &quot;y&quot;: -7.596166610717773, &quot;IDs&quot;: &quot;ENSG00000198429&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7045905590057373, &quot;y&quot;: -10.696502685546875, &quot;IDs&quot;: &quot;ENSG00000198468&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.259803533554077, &quot;y&quot;: -10.985343933105469, &quot;IDs&quot;: &quot;ENSG00000198496&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9914442896842957, &quot;y&quot;: -10.632345199584961, &quot;IDs&quot;: &quot;ENSG00000198555&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.86076021194458, &quot;y&quot;: -10.161164283752441, &quot;IDs&quot;: &quot;ENSG00000198570&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.1955485343933105, &quot;y&quot;: -9.400919914245605, &quot;IDs&quot;: &quot;ENSG00000198673&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6072702407836914, &quot;y&quot;: -7.849157333374023, &quot;IDs&quot;: &quot;ENSG00000198795&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9618778228759766, &quot;y&quot;: -8.351160049438477, &quot;IDs&quot;: &quot;ENSG00000198909&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0104734897613525, &quot;y&quot;: -8.284786224365234, &quot;IDs&quot;: &quot;ENSG00000203635&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.558000564575195, &quot;y&quot;: -7.9775896072387695, &quot;IDs&quot;: &quot;ENSG00000203739&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.609044551849365, &quot;y&quot;: -8.965008735656738, &quot;IDs&quot;: &quot;ENSG00000203865&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6446752548217773, &quot;y&quot;: -8.536914825439453, &quot;IDs&quot;: &quot;ENSG00000203872&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.674951076507568, &quot;y&quot;: -8.032506942749023, &quot;IDs&quot;: &quot;ENSG00000204060&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.88566255569458, &quot;y&quot;: -8.14549446105957, &quot;IDs&quot;: &quot;ENSG00000204084&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.9336042404174805, &quot;y&quot;: -6.839692115783691, &quot;IDs&quot;: &quot;ENSG00000204118&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5616890788078308, &quot;y&quot;: -11.380891799926758, &quot;IDs&quot;: &quot;ENSG00000204128&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7674338817596436, &quot;y&quot;: -9.247231483459473, &quot;IDs&quot;: &quot;ENSG00000204261&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.17085301876068115, &quot;y&quot;: -9.786709785461426, &quot;IDs&quot;: &quot;ENSG00000204314&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9133697152137756, &quot;y&quot;: -11.743877410888672, &quot;IDs&quot;: &quot;ENSG00000204583&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.706342935562134, &quot;y&quot;: -7.974460124969482, &quot;IDs&quot;: &quot;ENSG00000204650&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.5722057819366455, &quot;y&quot;: -10.66985034942627, &quot;IDs&quot;: &quot;ENSG00000204666&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7083678245544434, &quot;y&quot;: -9.670979499816895, &quot;IDs&quot;: &quot;ENSG00000204882&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.437826156616211, &quot;y&quot;: -8.71599006652832, &quot;IDs&quot;: &quot;ENSG00000204904&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.073494911193848, &quot;y&quot;: -8.284035682678223, &quot;IDs&quot;: &quot;ENSG00000204991&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.3507351875305176, &quot;y&quot;: -7.900772571563721, &quot;IDs&quot;: &quot;ENSG00000205090&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.849953293800354, &quot;y&quot;: -11.55639362335205, &quot;IDs&quot;: &quot;ENSG00000205213&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.980140686035156, &quot;y&quot;: -9.13054084777832, &quot;IDs&quot;: &quot;ENSG00000205269&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.0688157081604, &quot;y&quot;: -10.839391708374023, &quot;IDs&quot;: &quot;ENSG00000205325&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8017656803131104, &quot;y&quot;: -12.196147918701172, &quot;IDs&quot;: &quot;ENSG00000205334&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2946174144744873, &quot;y&quot;: -10.734989166259766, &quot;IDs&quot;: &quot;ENSG00000205456&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.48840856552124, &quot;y&quot;: -9.649876594543457, &quot;IDs&quot;: &quot;ENSG00000205634&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9465646743774414, &quot;y&quot;: -9.261446952819824, &quot;IDs&quot;: &quot;ENSG00000205682&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.966581106185913, &quot;y&quot;: -11.872056007385254, &quot;IDs&quot;: &quot;ENSG00000206052&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.994297444820404, &quot;y&quot;: -8.404698371887207, &quot;IDs&quot;: &quot;ENSG00000206077&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.9685633182525635, &quot;y&quot;: -9.730746269226074, &quot;IDs&quot;: &quot;ENSG00000206262&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9236122965812683, &quot;y&quot;: -10.112789154052734, &quot;IDs&quot;: &quot;ENSG00000206567&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.5999860763549805, &quot;y&quot;: -11.240435600280762, &quot;IDs&quot;: &quot;ENSG00000206579&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.715506553649902, &quot;y&quot;: -9.932780265808105, &quot;IDs&quot;: &quot;ENSG00000207650&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.419952869415283, &quot;y&quot;: -12.491678237915039, &quot;IDs&quot;: &quot;ENSG00000211584&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.624879837036133, &quot;y&quot;: -9.538994789123535, &quot;IDs&quot;: &quot;ENSG00000211957&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7398282289505005, &quot;y&quot;: -9.529741287231445, &quot;IDs&quot;: &quot;ENSG00000212694&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.710862398147583, &quot;y&quot;: -12.23193073272705, &quot;IDs&quot;: &quot;ENSG00000213145&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.562960624694824, &quot;y&quot;: -11.547523498535156, &quot;IDs&quot;: &quot;ENSG00000213160&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9337824583053589, &quot;y&quot;: -9.752867698669434, &quot;IDs&quot;: &quot;ENSG00000213213&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.346038341522217, &quot;y&quot;: -8.123565673828125, &quot;IDs&quot;: &quot;ENSG00000213337&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0785584449768066, &quot;y&quot;: -7.527488708496094, &quot;IDs&quot;: &quot;ENSG00000213347&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.4109798669815063, &quot;y&quot;: -10.497756958007812, &quot;IDs&quot;: &quot;ENSG00000213365&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7173137664794922, &quot;y&quot;: -10.682900428771973, &quot;IDs&quot;: &quot;ENSG00000213385&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.884497165679932, &quot;y&quot;: -9.712201118469238, &quot;IDs&quot;: &quot;ENSG00000213412&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5952948331832886, &quot;y&quot;: -9.875262260437012, &quot;IDs&quot;: &quot;ENSG00000213542&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7673261165618896, &quot;y&quot;: -11.465731620788574, &quot;IDs&quot;: &quot;ENSG00000213801&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.239485025405884, &quot;y&quot;: -9.869781494140625, &quot;IDs&quot;: &quot;ENSG00000213967&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.236762046813965, &quot;y&quot;: -8.814774513244629, &quot;IDs&quot;: &quot;ENSG00000214076&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.887534141540527, &quot;y&quot;: -8.319906234741211, &quot;IDs&quot;: &quot;ENSG00000214106&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6404622197151184, &quot;y&quot;: -11.073095321655273, &quot;IDs&quot;: &quot;ENSG00000214335&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0258411169052124, &quot;y&quot;: -8.041038513183594, &quot;IDs&quot;: &quot;ENSG00000214425&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5819879770278931, &quot;y&quot;: -9.295742988586426, &quot;IDs&quot;: &quot;ENSG00000214617&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9471750259399414, &quot;y&quot;: -9.836407661437988, &quot;IDs&quot;: &quot;ENSG00000214643&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.028108835220337, &quot;y&quot;: -11.39242935180664, &quot;IDs&quot;: &quot;ENSG00000214694&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.810606479644775, &quot;y&quot;: -9.894947052001953, &quot;IDs&quot;: &quot;ENSG00000214711&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.32583475112915, &quot;y&quot;: -11.891890525817871, &quot;IDs&quot;: &quot;ENSG00000214776&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9537878036499023, &quot;y&quot;: -7.474825382232666, &quot;IDs&quot;: &quot;ENSG00000214796&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7946476936340332, &quot;y&quot;: -12.22281551361084, &quot;IDs&quot;: &quot;ENSG00000214894&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.177427291870117, &quot;y&quot;: -10.321733474731445, &quot;IDs&quot;: &quot;ENSG00000214922&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.472013473510742, &quot;y&quot;: -11.801676750183105, &quot;IDs&quot;: &quot;ENSG00000215045&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.537588596343994, &quot;y&quot;: -9.638334274291992, &quot;IDs&quot;: &quot;ENSG00000215237&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6177204847335815, &quot;y&quot;: -11.084067344665527, &quot;IDs&quot;: &quot;ENSG00000215838&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.16956746578216553, &quot;y&quot;: -8.536101341247559, &quot;IDs&quot;: &quot;ENSG00000220201&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9299618601799011, &quot;y&quot;: -10.371736526489258, &quot;IDs&quot;: &quot;ENSG00000221792&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.378660202026367, &quot;y&quot;: -11.433709144592285, &quot;IDs&quot;: &quot;ENSG00000221821&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5674755573272705, &quot;y&quot;: -9.941279411315918, &quot;IDs&quot;: &quot;ENSG00000221886&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8766723275184631, &quot;y&quot;: -11.587996482849121, &quot;IDs&quot;: &quot;ENSG00000221887&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3866593837738037, &quot;y&quot;: -12.471019744873047, &quot;IDs&quot;: &quot;ENSG00000221963&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5102181434631348, &quot;y&quot;: -12.304974555969238, &quot;IDs&quot;: &quot;ENSG00000222020&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.849820613861084, &quot;y&quot;: -12.905585289001465, &quot;IDs&quot;: &quot;ENSG00000223343&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.005763530731201, &quot;y&quot;: -11.698058128356934, &quot;IDs&quot;: &quot;ENSG00000223382&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3591272830963135, &quot;y&quot;: -11.329106330871582, &quot;IDs&quot;: &quot;ENSG00000223396&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4677226543426514, &quot;y&quot;: -10.380720138549805, &quot;IDs&quot;: &quot;ENSG00000223495&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.699328899383545, &quot;y&quot;: -10.537672996520996, &quot;IDs&quot;: &quot;ENSG00000223566&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.5110955238342285, &quot;y&quot;: -9.21864128112793, &quot;IDs&quot;: &quot;ENSG00000223703&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0562262535095215, &quot;y&quot;: -12.914511680603027, &quot;IDs&quot;: &quot;ENSG00000223745&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5608327388763428, &quot;y&quot;: -10.842581748962402, &quot;IDs&quot;: &quot;ENSG00000223855&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.2351735830307007, &quot;y&quot;: -8.03768253326416, &quot;IDs&quot;: &quot;ENSG00000224003&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.12226410210132599, &quot;y&quot;: -8.355273246765137, &quot;IDs&quot;: &quot;ENSG00000224020&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.955981254577637, &quot;y&quot;: -11.56818675994873, &quot;IDs&quot;: &quot;ENSG00000224046&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3954458236694336, &quot;y&quot;: -11.103532791137695, &quot;IDs&quot;: &quot;ENSG00000224050&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.43689998984336853, &quot;y&quot;: -8.306532859802246, &quot;IDs&quot;: &quot;ENSG00000224106&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.9001970291137695, &quot;y&quot;: -11.059799194335938, &quot;IDs&quot;: &quot;ENSG00000224152&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.85906720161438, &quot;y&quot;: -10.712949752807617, &quot;IDs&quot;: &quot;ENSG00000224165&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9475338459014893, &quot;y&quot;: -9.449004173278809, &quot;IDs&quot;: &quot;ENSG00000224216&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.5227952003479, &quot;y&quot;: -10.717257499694824, &quot;IDs&quot;: &quot;ENSG00000224533&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3703153133392334, &quot;y&quot;: -10.3037109375, &quot;IDs&quot;: &quot;ENSG00000224536&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4477970600128174, &quot;y&quot;: -10.328465461730957, &quot;IDs&quot;: &quot;ENSG00000224794&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3464171886444092, &quot;y&quot;: -8.744991302490234, &quot;IDs&quot;: &quot;ENSG00000224897&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.534794330596924, &quot;y&quot;: -11.56157112121582, &quot;IDs&quot;: &quot;ENSG00000224905&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0119740962982178, &quot;y&quot;: -11.078315734863281, &quot;IDs&quot;: &quot;ENSG00000225032&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.2448372840881348, &quot;y&quot;: -11.409323692321777, &quot;IDs&quot;: &quot;ENSG00000225138&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.030747413635254, &quot;y&quot;: -12.034553527832031, &quot;IDs&quot;: &quot;ENSG00000225177&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7773711681365967, &quot;y&quot;: -7.316882133483887, &quot;IDs&quot;: &quot;ENSG00000225399&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6807074546813965, &quot;y&quot;: -11.342844009399414, &quot;IDs&quot;: &quot;ENSG00000225411&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3472611904144287, &quot;y&quot;: -10.54607105255127, &quot;IDs&quot;: &quot;ENSG00000225492&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.090947151184082, &quot;y&quot;: -10.813152313232422, &quot;IDs&quot;: &quot;ENSG00000225511&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.169818639755249, &quot;y&quot;: -12.061967849731445, &quot;IDs&quot;: &quot;ENSG00000225595&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.027796745300293, &quot;y&quot;: -11.215446472167969, &quot;IDs&quot;: &quot;ENSG00000225675&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7318387031555176, &quot;y&quot;: -10.345931053161621, &quot;IDs&quot;: &quot;ENSG00000225855&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.351982593536377, &quot;y&quot;: -9.492511749267578, &quot;IDs&quot;: &quot;ENSG00000225868&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.396135330200195, &quot;y&quot;: -10.328423500061035, &quot;IDs&quot;: &quot;ENSG00000225950&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.772425413131714, &quot;y&quot;: -9.557721138000488, &quot;IDs&quot;: &quot;ENSG00000226031&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.827610015869141, &quot;y&quot;: -11.744669914245605, &quot;IDs&quot;: &quot;ENSG00000226053&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.2661124467849731, &quot;y&quot;: -9.10311222076416, &quot;IDs&quot;: &quot;ENSG00000226087&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8197110891342163, &quot;y&quot;: -12.11194896697998, &quot;IDs&quot;: &quot;ENSG00000226091&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3783702850341797, &quot;y&quot;: -7.636877059936523, &quot;IDs&quot;: &quot;ENSG00000226332&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.450469970703125, &quot;y&quot;: -12.764195442199707, &quot;IDs&quot;: &quot;ENSG00000226374&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8709518909454346, &quot;y&quot;: -10.530195236206055, &quot;IDs&quot;: &quot;ENSG00000226383&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.193985939025879, &quot;y&quot;: -12.004231452941895, &quot;IDs&quot;: &quot;ENSG00000226386&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.878329038619995, &quot;y&quot;: -11.2467679977417, &quot;IDs&quot;: &quot;ENSG00000226445&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.319701910018921, &quot;y&quot;: -11.06602954864502, &quot;IDs&quot;: &quot;ENSG00000226468&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.857025146484375, &quot;y&quot;: -11.615307807922363, &quot;IDs&quot;: &quot;ENSG00000226508&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.497893810272217, &quot;y&quot;: -9.3629789352417, &quot;IDs&quot;: &quot;ENSG00000226580&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.0075392723083496, &quot;y&quot;: -11.96236515045166, &quot;IDs&quot;: &quot;ENSG00000226620&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.054144859313965, &quot;y&quot;: -11.015923500061035, &quot;IDs&quot;: &quot;ENSG00000226686&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.197814702987671, &quot;y&quot;: -11.728816986083984, &quot;IDs&quot;: &quot;ENSG00000226696&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.25336623191833496, &quot;y&quot;: -8.335770606994629, &quot;IDs&quot;: &quot;ENSG00000226913&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.344571590423584, &quot;y&quot;: -6.916706085205078, &quot;IDs&quot;: &quot;ENSG00000226964&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.528286337852478, &quot;y&quot;: -9.050505638122559, &quot;IDs&quot;: &quot;ENSG00000227124&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.709588527679443, &quot;y&quot;: -8.19023609161377, &quot;IDs&quot;: &quot;ENSG00000227141&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.2307415008544922, &quot;y&quot;: -10.914685249328613, &quot;IDs&quot;: &quot;ENSG00000227268&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.998806953430176, &quot;y&quot;: -10.087509155273438, &quot;IDs&quot;: &quot;ENSG00000227479&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7861722111701965, &quot;y&quot;: -10.493882179260254, &quot;IDs&quot;: &quot;ENSG00000227495&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.1897406578063965, &quot;y&quot;: -8.42367172241211, &quot;IDs&quot;: &quot;ENSG00000227502&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.119365215301514, &quot;y&quot;: -11.28620433807373, &quot;IDs&quot;: &quot;ENSG00000227811&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.026630401611328, &quot;y&quot;: -11.896492004394531, &quot;IDs&quot;: &quot;ENSG00000227825&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5685559511184692, &quot;y&quot;: -10.533203125, &quot;IDs&quot;: &quot;ENSG00000227964&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8424421548843384, &quot;y&quot;: -11.228683471679688, &quot;IDs&quot;: &quot;ENSG00000228126&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6599555611610413, &quot;y&quot;: -11.379186630249023, &quot;IDs&quot;: &quot;ENSG00000228142&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.379807949066162, &quot;y&quot;: -11.566258430480957, &quot;IDs&quot;: &quot;ENSG00000228203&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8681983947753906, &quot;y&quot;: -8.95770263671875, &quot;IDs&quot;: &quot;ENSG00000228274&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.686572551727295, &quot;y&quot;: -11.948601722717285, &quot;IDs&quot;: &quot;ENSG00000228561&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.6568115949630737, &quot;y&quot;: -9.843143463134766, &quot;IDs&quot;: &quot;ENSG00000228630&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.308758735656738, &quot;y&quot;: -8.362807273864746, &quot;IDs&quot;: &quot;ENSG00000228656&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.5906907320022583, &quot;y&quot;: -9.658464431762695, &quot;IDs&quot;: &quot;ENSG00000229064&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.367947578430176, &quot;y&quot;: -11.360274314880371, &quot;IDs&quot;: &quot;ENSG00000229153&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.649742841720581, &quot;y&quot;: -11.648640632629395, &quot;IDs&quot;: &quot;ENSG00000229178&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3336007595062256, &quot;y&quot;: -12.321776390075684, &quot;IDs&quot;: &quot;ENSG00000229221&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.424206256866455, &quot;y&quot;: -10.65575122833252, &quot;IDs&quot;: &quot;ENSG00000229261&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.239465713500977, &quot;y&quot;: -11.354717254638672, &quot;IDs&quot;: &quot;ENSG00000229292&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7497655749320984, &quot;y&quot;: -10.630617141723633, &quot;IDs&quot;: &quot;ENSG00000229356&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.620065689086914, &quot;y&quot;: -9.468883514404297, &quot;IDs&quot;: &quot;ENSG00000229404&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4631290435791016, &quot;y&quot;: -11.359545707702637, &quot;IDs&quot;: &quot;ENSG00000229422&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.46620097756385803, &quot;y&quot;: -11.026019096374512, &quot;IDs&quot;: &quot;ENSG00000229539&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.052067279815674, &quot;y&quot;: -12.321390151977539, &quot;IDs&quot;: &quot;ENSG00000229558&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.736475706100464, &quot;y&quot;: -11.572335243225098, &quot;IDs&quot;: &quot;ENSG00000229589&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.574211359024048, &quot;y&quot;: -9.246493339538574, &quot;IDs&quot;: &quot;ENSG00000229661&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.04105806350708, &quot;y&quot;: -10.964844703674316, &quot;IDs&quot;: &quot;ENSG00000229743&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9135472774505615, &quot;y&quot;: -9.45285701751709, &quot;IDs&quot;: &quot;ENSG00000229847&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.066636085510254, &quot;y&quot;: -10.099555015563965, &quot;IDs&quot;: &quot;ENSG00000229867&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.2069363594055176, &quot;y&quot;: -9.669479370117188, &quot;IDs&quot;: &quot;ENSG00000229970&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.800661325454712, &quot;y&quot;: -12.192779541015625, &quot;IDs&quot;: &quot;ENSG00000230027&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4677343368530273, &quot;y&quot;: -9.828703880310059, &quot;IDs&quot;: &quot;ENSG00000230074&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8355448842048645, &quot;y&quot;: -10.315837860107422, &quot;IDs&quot;: &quot;ENSG00000230177&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.743108034133911, &quot;y&quot;: -8.765067100524902, &quot;IDs&quot;: &quot;ENSG00000230194&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.854037046432495, &quot;y&quot;: -10.140960693359375, &quot;IDs&quot;: &quot;ENSG00000230312&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.099742412567139, &quot;y&quot;: -12.363945960998535, &quot;IDs&quot;: &quot;ENSG00000230316&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7040000557899475, &quot;y&quot;: -11.491524696350098, &quot;IDs&quot;: &quot;ENSG00000230521&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.1529200077056885, &quot;y&quot;: -11.41614055633545, &quot;IDs&quot;: &quot;ENSG00000230658&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1399785280227661, &quot;y&quot;: -10.139453887939453, &quot;IDs&quot;: &quot;ENSG00000230787&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.644293785095215, &quot;y&quot;: -8.376540184020996, &quot;IDs&quot;: &quot;ENSG00000230790&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.755183219909668, &quot;y&quot;: -7.205657005310059, &quot;IDs&quot;: &quot;ENSG00000230825&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.2524861097335815, &quot;y&quot;: -11.58679485321045, &quot;IDs&quot;: &quot;ENSG00000230870&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.7029547691345215, &quot;y&quot;: -9.930248260498047, &quot;IDs&quot;: &quot;ENSG00000230873&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6834464073181152, &quot;y&quot;: -11.183561325073242, &quot;IDs&quot;: &quot;ENSG00000231079&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6842370629310608, &quot;y&quot;: -7.765940189361572, &quot;IDs&quot;: &quot;ENSG00000231083&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8143486976623535, &quot;y&quot;: -10.219962120056152, &quot;IDs&quot;: &quot;ENSG00000231187&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5763936042785645, &quot;y&quot;: -10.297600746154785, &quot;IDs&quot;: &quot;ENSG00000231249&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.95585298538208, &quot;y&quot;: -8.53330135345459, &quot;IDs&quot;: &quot;ENSG00000231367&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.760377883911133, &quot;y&quot;: -8.303535461425781, &quot;IDs&quot;: &quot;ENSG00000231419&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.182541012763977, &quot;y&quot;: -11.791522026062012, &quot;IDs&quot;: &quot;ENSG00000231437&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0872784852981567, &quot;y&quot;: -10.05974292755127, &quot;IDs&quot;: &quot;ENSG00000231563&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.3709040880203247, &quot;y&quot;: -11.156176567077637, &quot;IDs&quot;: &quot;ENSG00000231574&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.045472145080566, &quot;y&quot;: -12.872641563415527, &quot;IDs&quot;: &quot;ENSG00000231584&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8801374435424805, &quot;y&quot;: -8.76789379119873, &quot;IDs&quot;: &quot;ENSG00000231638&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6368865966796875, &quot;y&quot;: -8.454434394836426, &quot;IDs&quot;: &quot;ENSG00000231646&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.00124979019165, &quot;y&quot;: -10.927191734313965, &quot;IDs&quot;: &quot;ENSG00000231652&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.584678888320923, &quot;y&quot;: -10.583869934082031, &quot;IDs&quot;: &quot;ENSG00000231728&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7865446209907532, &quot;y&quot;: -9.87756061553955, &quot;IDs&quot;: &quot;ENSG00000231793&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.984589099884033, &quot;y&quot;: -10.27722454071045, &quot;IDs&quot;: &quot;ENSG00000232006&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3003252744674683, &quot;y&quot;: -12.129403114318848, &quot;IDs&quot;: &quot;ENSG00000232065&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.269481658935547, &quot;y&quot;: -12.027294158935547, &quot;IDs&quot;: &quot;ENSG00000232093&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.925266146659851, &quot;y&quot;: -9.322442054748535, &quot;IDs&quot;: &quot;ENSG00000232155&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.866163730621338, &quot;y&quot;: -8.809864044189453, &quot;IDs&quot;: &quot;ENSG00000232216&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.244051456451416, &quot;y&quot;: -9.876459121704102, &quot;IDs&quot;: &quot;ENSG00000232448&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5891241431236267, &quot;y&quot;: -9.249104499816895, &quot;IDs&quot;: &quot;ENSG00000232450&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5080296993255615, &quot;y&quot;: -11.08174991607666, &quot;IDs&quot;: &quot;ENSG00000232471&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.489921808242798, &quot;y&quot;: -12.370685577392578, &quot;IDs&quot;: &quot;ENSG00000232480&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2862119674682617, &quot;y&quot;: -12.264286994934082, &quot;IDs&quot;: &quot;ENSG00000232645&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.497370958328247, &quot;y&quot;: -11.008638381958008, &quot;IDs&quot;: &quot;ENSG00000232716&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7040541172027588, &quot;y&quot;: -10.178284645080566, &quot;IDs&quot;: &quot;ENSG00000232807&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.9751715660095215, &quot;y&quot;: -12.232983589172363, &quot;IDs&quot;: &quot;ENSG00000232815&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8655751943588257, &quot;y&quot;: -10.122764587402344, &quot;IDs&quot;: &quot;ENSG00000232874&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5657970905303955, &quot;y&quot;: -9.881993293762207, &quot;IDs&quot;: &quot;ENSG00000232936&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8968896865844727, &quot;y&quot;: -11.150007247924805, &quot;IDs&quot;: &quot;ENSG00000232940&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3879642486572266, &quot;y&quot;: -11.138850212097168, &quot;IDs&quot;: &quot;ENSG00000233006&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8817766904830933, &quot;y&quot;: -7.581353664398193, &quot;IDs&quot;: &quot;ENSG00000233215&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.514223575592041, &quot;y&quot;: -10.674384117126465, &quot;IDs&quot;: &quot;ENSG00000233264&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4481847286224365, &quot;y&quot;: -9.223937034606934, &quot;IDs&quot;: &quot;ENSG00000233275&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.862706661224365, &quot;y&quot;: -9.00193977355957, &quot;IDs&quot;: &quot;ENSG00000233359&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6830978393554688, &quot;y&quot;: -9.805181503295898, &quot;IDs&quot;: &quot;ENSG00000233396&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6883817315101624, &quot;y&quot;: -10.24060344696045, &quot;IDs&quot;: &quot;ENSG00000233429&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.350977659225464, &quot;y&quot;: -11.015539169311523, &quot;IDs&quot;: &quot;ENSG00000233435&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7173702716827393, &quot;y&quot;: -8.70454216003418, &quot;IDs&quot;: &quot;ENSG00000233455&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.181398868560791, &quot;y&quot;: -10.425760269165039, &quot;IDs&quot;: &quot;ENSG00000233527&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.261631011962891, &quot;y&quot;: -9.83719539642334, &quot;IDs&quot;: &quot;ENSG00000233571&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.281736373901367, &quot;y&quot;: -11.567493438720703, &quot;IDs&quot;: &quot;ENSG00000233654&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.02695894241333, &quot;y&quot;: -11.822535514831543, &quot;IDs&quot;: &quot;ENSG00000233912&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.5656834840774536, &quot;y&quot;: -10.4100341796875, &quot;IDs&quot;: &quot;ENSG00000233937&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3941643238067627, &quot;y&quot;: -12.356903076171875, &quot;IDs&quot;: &quot;ENSG00000234062&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.407847881317139, &quot;y&quot;: -10.475973129272461, &quot;IDs&quot;: &quot;ENSG00000234183&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.056973934173584, &quot;y&quot;: -11.632680892944336, &quot;IDs&quot;: &quot;ENSG00000234235&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.929635524749756, &quot;y&quot;: -11.23460865020752, &quot;IDs&quot;: &quot;ENSG00000234327&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.241580486297607, &quot;y&quot;: -10.167264938354492, &quot;IDs&quot;: &quot;ENSG00000234460&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0599156618118286, &quot;y&quot;: -9.834325790405273, &quot;IDs&quot;: &quot;ENSG00000234509&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.607406735420227, &quot;y&quot;: -9.059043884277344, &quot;IDs&quot;: &quot;ENSG00000234537&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6875638961791992, &quot;y&quot;: -9.380447387695312, &quot;IDs&quot;: &quot;ENSG00000234546&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6882917881011963, &quot;y&quot;: -9.337912559509277, &quot;IDs&quot;: &quot;ENSG00000234617&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.074136734008789, &quot;y&quot;: -10.12439250946045, &quot;IDs&quot;: &quot;ENSG00000234690&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5809028148651123, &quot;y&quot;: -10.76162338256836, &quot;IDs&quot;: &quot;ENSG00000234692&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9773082137107849, &quot;y&quot;: -11.38532829284668, &quot;IDs&quot;: &quot;ENSG00000234709&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.363186836242676, &quot;y&quot;: -13.003579139709473, &quot;IDs&quot;: &quot;ENSG00000234754&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.760184288024902, &quot;y&quot;: -8.171836853027344, &quot;IDs&quot;: &quot;ENSG00000234773&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.390283465385437, &quot;y&quot;: -8.866575241088867, &quot;IDs&quot;: &quot;ENSG00000234883&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7244811058044434, &quot;y&quot;: -8.347624778747559, &quot;IDs&quot;: &quot;ENSG00000234928&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.863101840019226, &quot;y&quot;: -12.0020751953125, &quot;IDs&quot;: &quot;ENSG00000234936&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.9585394859313965, &quot;y&quot;: -8.427270889282227, &quot;IDs&quot;: &quot;ENSG00000235109&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.685246467590332, &quot;y&quot;: -11.058351516723633, &quot;IDs&quot;: &quot;ENSG00000235194&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.177464485168457, &quot;y&quot;: -11.6175537109375, &quot;IDs&quot;: &quot;ENSG00000235257&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.129395484924316, &quot;y&quot;: -11.72329044342041, &quot;IDs&quot;: &quot;ENSG00000235269&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.205347061157227, &quot;y&quot;: -12.789459228515625, &quot;IDs&quot;: &quot;ENSG00000235280&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.005792140960693, &quot;y&quot;: -9.33962345123291, &quot;IDs&quot;: &quot;ENSG00000235295&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.185819387435913, &quot;y&quot;: -9.652982711791992, &quot;IDs&quot;: &quot;ENSG00000235368&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1702280044555664, &quot;y&quot;: -10.551665306091309, &quot;IDs&quot;: &quot;ENSG00000235370&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.050178289413452, &quot;y&quot;: -7.881673812866211, &quot;IDs&quot;: &quot;ENSG00000235410&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.0381999015808105, &quot;y&quot;: -11.287286758422852, &quot;IDs&quot;: &quot;ENSG00000235545&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.58359956741333, &quot;y&quot;: -12.183817863464355, &quot;IDs&quot;: &quot;ENSG00000235688&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.930499315261841, &quot;y&quot;: -9.75644588470459, &quot;IDs&quot;: &quot;ENSG00000235821&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.776695489883423, &quot;y&quot;: -9.931890487670898, &quot;IDs&quot;: &quot;ENSG00000235823&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.943843841552734, &quot;y&quot;: -11.828218460083008, &quot;IDs&quot;: &quot;ENSG00000235897&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.4381462335586548, &quot;y&quot;: -7.928349018096924, &quot;IDs&quot;: &quot;ENSG00000236008&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.798121213912964, &quot;y&quot;: -9.719118118286133, &quot;IDs&quot;: &quot;ENSG00000236028&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.5221729278564453, &quot;y&quot;: -7.918163776397705, &quot;IDs&quot;: &quot;ENSG00000236213&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7462618350982666, &quot;y&quot;: -11.015496253967285, &quot;IDs&quot;: &quot;ENSG00000236358&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.616058826446533, &quot;y&quot;: -9.868875503540039, &quot;IDs&quot;: &quot;ENSG00000236404&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.7686333656311035, &quot;y&quot;: -9.178147315979004, &quot;IDs&quot;: &quot;ENSG00000236562&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7972615957260132, &quot;y&quot;: -10.08653450012207, &quot;IDs&quot;: &quot;ENSG00000236670&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.289951801300049, &quot;y&quot;: -8.4369478225708, &quot;IDs&quot;: &quot;ENSG00000236750&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.6022911071777344, &quot;y&quot;: -10.050887107849121, &quot;IDs&quot;: &quot;ENSG00000236819&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4116361141204834, &quot;y&quot;: -10.194960594177246, &quot;IDs&quot;: &quot;ENSG00000236830&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.05739164352417, &quot;y&quot;: -11.75365924835205, &quot;IDs&quot;: &quot;ENSG00000236947&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.362468242645264, &quot;y&quot;: -10.117438316345215, &quot;IDs&quot;: &quot;ENSG00000236969&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8363876938819885, &quot;y&quot;: -8.670049667358398, &quot;IDs&quot;: &quot;ENSG00000236993&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6905426979064941, &quot;y&quot;: -8.968511581420898, &quot;IDs&quot;: &quot;ENSG00000237119&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.468266725540161, &quot;y&quot;: -9.730241775512695, &quot;IDs&quot;: &quot;ENSG00000237161&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.351858139038086, &quot;y&quot;: -10.205193519592285, &quot;IDs&quot;: &quot;ENSG00000237298&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.4918196201324463, &quot;y&quot;: -12.090181350708008, &quot;IDs&quot;: &quot;ENSG00000237310&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.641829490661621, &quot;y&quot;: -9.61938762664795, &quot;IDs&quot;: &quot;ENSG00000237356&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.173377752304077, &quot;y&quot;: -10.378585815429688, &quot;IDs&quot;: &quot;ENSG00000237357&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.20766544342041, &quot;y&quot;: -8.151535034179688, &quot;IDs&quot;: &quot;ENSG00000237523&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.0552802085876465, &quot;y&quot;: -9.973542213439941, &quot;IDs&quot;: &quot;ENSG00000237595&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.516277313232422, &quot;y&quot;: -9.850403785705566, &quot;IDs&quot;: &quot;ENSG00000237689&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.5065531730651855, &quot;y&quot;: -9.774677276611328, &quot;IDs&quot;: &quot;ENSG00000237751&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.067230224609375, &quot;y&quot;: -10.132726669311523, &quot;IDs&quot;: &quot;ENSG00000237849&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6985840201377869, &quot;y&quot;: -9.226582527160645, &quot;IDs&quot;: &quot;ENSG00000237886&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.20983737707138062, &quot;y&quot;: -8.816640853881836, &quot;IDs&quot;: &quot;ENSG00000237940&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2084479331970215, &quot;y&quot;: -9.769449234008789, &quot;IDs&quot;: &quot;ENSG00000237961&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.1508126258850098, &quot;y&quot;: -11.645486831665039, &quot;IDs&quot;: &quot;ENSG00000238107&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.617958903312683, &quot;y&quot;: -10.709657669067383, &quot;IDs&quot;: &quot;ENSG00000238113&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.073514461517334, &quot;y&quot;: -8.417513847351074, &quot;IDs&quot;: &quot;ENSG00000238245&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.74074387550354, &quot;y&quot;: -10.130209922790527, &quot;IDs&quot;: &quot;ENSG00000238287&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1244614124298096, &quot;y&quot;: -10.104284286499023, &quot;IDs&quot;: &quot;ENSG00000239335&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.188327312469482, &quot;y&quot;: -9.447309494018555, &quot;IDs&quot;: &quot;ENSG00000239467&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5434494018554688, &quot;y&quot;: -11.368038177490234, &quot;IDs&quot;: &quot;ENSG00000239521&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.380247116088867, &quot;y&quot;: -12.464548110961914, &quot;IDs&quot;: &quot;ENSG00000239556&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.041927456855774, &quot;y&quot;: -8.081818580627441, &quot;IDs&quot;: &quot;ENSG00000239791&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.470921754837036, &quot;y&quot;: -9.458171844482422, &quot;IDs&quot;: &quot;ENSG00000239887&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.289233446121216, &quot;y&quot;: -8.942368507385254, &quot;IDs&quot;: &quot;ENSG00000240086&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.426375865936279, &quot;y&quot;: -9.272651672363281, &quot;IDs&quot;: &quot;ENSG00000240687&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.764749050140381, &quot;y&quot;: -7.440938472747803, &quot;IDs&quot;: &quot;ENSG00000240922&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.046530723571777, &quot;y&quot;: -12.48857593536377, &quot;IDs&quot;: &quot;ENSG00000241163&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7448915243148804, &quot;y&quot;: -10.584391593933105, &quot;IDs&quot;: &quot;ENSG00000241889&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3914437294006348, &quot;y&quot;: -12.903373718261719, &quot;IDs&quot;: &quot;ENSG00000241935&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5288455486297607, &quot;y&quot;: -11.939058303833008, &quot;IDs&quot;: &quot;ENSG00000242259&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7497802376747131, &quot;y&quot;: -9.467576026916504, &quot;IDs&quot;: &quot;ENSG00000242876&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.42446213960647583, &quot;y&quot;: -9.704927444458008, &quot;IDs&quot;: &quot;ENSG00000243137&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.082758903503418, &quot;y&quot;: -11.494048118591309, &quot;IDs&quot;: &quot;ENSG00000243224&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.713447570800781, &quot;y&quot;: -12.280049324035645, &quot;IDs&quot;: &quot;ENSG00000243244&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2989861965179443, &quot;y&quot;: -11.025617599487305, &quot;IDs&quot;: &quot;ENSG00000243335&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.384962320327759, &quot;y&quot;: -10.956159591674805, &quot;IDs&quot;: &quot;ENSG00000243701&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.721952438354492, &quot;y&quot;: -9.850926399230957, &quot;IDs&quot;: &quot;ENSG00000243766&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.313379764556885, &quot;y&quot;: -9.085261344909668, &quot;IDs&quot;: &quot;ENSG00000243926&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6125059127807617, &quot;y&quot;: -6.3656005859375, &quot;IDs&quot;: &quot;ENSG00000243967&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.204214572906494, &quot;y&quot;: -10.18413257598877, &quot;IDs&quot;: &quot;ENSG00000243981&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.49058830738067627, &quot;y&quot;: -9.118451118469238, &quot;IDs&quot;: &quot;ENSG00000244345&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0517630577087402, &quot;y&quot;: -8.369701385498047, &quot;IDs&quot;: &quot;ENSG00000244480&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.174680233001709, &quot;y&quot;: -11.867709159851074, &quot;IDs&quot;: &quot;ENSG00000244509&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9575061202049255, &quot;y&quot;: -10.663463592529297, &quot;IDs&quot;: &quot;ENSG00000244558&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.5652347803115845, &quot;y&quot;: -10.388728141784668, &quot;IDs&quot;: &quot;ENSG00000244627&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.061397869139909744, &quot;y&quot;: -6.6205573081970215, &quot;IDs&quot;: &quot;ENSG00000245149&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9179253578186035, &quot;y&quot;: -8.813203811645508, &quot;IDs&quot;: &quot;ENSG00000245164&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.004701614379883, &quot;y&quot;: -11.044496536254883, &quot;IDs&quot;: &quot;ENSG00000245213&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.6244055032730103, &quot;y&quot;: -9.598105430603027, &quot;IDs&quot;: &quot;ENSG00000245275&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.084255695343018, &quot;y&quot;: -10.84666919708252, &quot;IDs&quot;: &quot;ENSG00000245534&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3998422622680664, &quot;y&quot;: -11.02361011505127, &quot;IDs&quot;: &quot;ENSG00000245556&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4074699878692627, &quot;y&quot;: -12.390457153320312, &quot;IDs&quot;: &quot;ENSG00000245571&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6325252056121826, &quot;y&quot;: -11.263806343078613, &quot;IDs&quot;: &quot;ENSG00000245614&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4840056896209717, &quot;y&quot;: -10.36026668548584, &quot;IDs&quot;: &quot;ENSG00000246100&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.146448135375977, &quot;y&quot;: -9.768933296203613, &quot;IDs&quot;: &quot;ENSG00000246174&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2986648082733154, &quot;y&quot;: -9.737103462219238, &quot;IDs&quot;: &quot;ENSG00000246263&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.7767534255981445, &quot;y&quot;: -8.7402982711792, &quot;IDs&quot;: &quot;ENSG00000246273&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.4813074469566345, &quot;y&quot;: -10.872452735900879, &quot;IDs&quot;: &quot;ENSG00000246375&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9072115421295166, &quot;y&quot;: -12.028287887573242, &quot;IDs&quot;: &quot;ENSG00000246465&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.504970550537109, &quot;y&quot;: -9.575377464294434, &quot;IDs&quot;: &quot;ENSG00000246523&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.108682870864868, &quot;y&quot;: -8.643518447875977, &quot;IDs&quot;: &quot;ENSG00000246731&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6746041774749756, &quot;y&quot;: -10.309610366821289, &quot;IDs&quot;: &quot;ENSG00000246863&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.189553737640381, &quot;y&quot;: -12.987288475036621, &quot;IDs&quot;: &quot;ENSG00000246877&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.36592435836792, &quot;y&quot;: -10.903087615966797, &quot;IDs&quot;: &quot;ENSG00000247121&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.6311678886413574, &quot;y&quot;: -9.376776695251465, &quot;IDs&quot;: &quot;ENSG00000247151&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.184889316558838, &quot;y&quot;: -11.319615364074707, &quot;IDs&quot;: &quot;ENSG00000247271&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3282651901245117, &quot;y&quot;: -12.105459213256836, &quot;IDs&quot;: &quot;ENSG00000247317&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.4614521563053131, &quot;y&quot;: -9.993188858032227, &quot;IDs&quot;: &quot;ENSG00000247373&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.671100616455078, &quot;y&quot;: -9.732998847961426, &quot;IDs&quot;: &quot;ENSG00000247765&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1210798025131226, &quot;y&quot;: -8.472497940063477, &quot;IDs&quot;: &quot;ENSG00000248015&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.774459958076477, &quot;y&quot;: -11.961915016174316, &quot;IDs&quot;: &quot;ENSG00000248019&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.046734809875488, &quot;y&quot;: -9.33132266998291, &quot;IDs&quot;: &quot;ENSG00000248206&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.438701629638672, &quot;y&quot;: -11.637986183166504, &quot;IDs&quot;: &quot;ENSG00000248215&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.71172833442688, &quot;y&quot;: -11.655616760253906, &quot;IDs&quot;: &quot;ENSG00000248334&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.26552778482437134, &quot;y&quot;: -8.179661750793457, &quot;IDs&quot;: &quot;ENSG00000248367&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5479551553726196, &quot;y&quot;: -9.03489875793457, &quot;IDs&quot;: &quot;ENSG00000248429&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.094682216644287, &quot;y&quot;: -10.353718757629395, &quot;IDs&quot;: &quot;ENSG00000248494&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.403477668762207, &quot;y&quot;: -10.65459156036377, &quot;IDs&quot;: &quot;ENSG00000248498&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3014953136444092, &quot;y&quot;: -10.134041786193848, &quot;IDs&quot;: &quot;ENSG00000248821&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.590895652770996, &quot;y&quot;: -9.289896011352539, &quot;IDs&quot;: &quot;ENSG00000248846&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.324235439300537, &quot;y&quot;: -11.424476623535156, &quot;IDs&quot;: &quot;ENSG00000248932&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.526327610015869, &quot;y&quot;: -8.417860984802246, &quot;IDs&quot;: &quot;ENSG00000249006&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3689699172973633, &quot;y&quot;: -9.351512908935547, &quot;IDs&quot;: &quot;ENSG00000249052&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.4986813068389893, &quot;y&quot;: -8.846003532409668, &quot;IDs&quot;: &quot;ENSG00000249079&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.823841392993927, &quot;y&quot;: -9.649953842163086, &quot;IDs&quot;: &quot;ENSG00000249087&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5390399098396301, &quot;y&quot;: -11.121010780334473, &quot;IDs&quot;: &quot;ENSG00000249092&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.612669944763184, &quot;y&quot;: -8.339935302734375, &quot;IDs&quot;: &quot;ENSG00000249199&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.195478677749634, &quot;y&quot;: -11.798164367675781, &quot;IDs&quot;: &quot;ENSG00000249267&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3335533142089844, &quot;y&quot;: -10.19336223602295, &quot;IDs&quot;: &quot;ENSG00000249337&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8768413066864014, &quot;y&quot;: -10.693103790283203, &quot;IDs&quot;: &quot;ENSG00000249359&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.512535810470581, &quot;y&quot;: -9.709918975830078, &quot;IDs&quot;: &quot;ENSG00000249413&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.32396283745765686, &quot;y&quot;: -9.69615364074707, &quot;IDs&quot;: &quot;ENSG00000249476&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.638378620147705, &quot;y&quot;: -10.107900619506836, &quot;IDs&quot;: &quot;ENSG00000249502&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.674487352371216, &quot;y&quot;: -10.251826286315918, &quot;IDs&quot;: &quot;ENSG00000249738&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.471506357192993, &quot;y&quot;: -10.259315490722656, &quot;IDs&quot;: &quot;ENSG00000249740&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7000179290771484, &quot;y&quot;: -8.16015338897705, &quot;IDs&quot;: &quot;ENSG00000249828&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3855268955230713, &quot;y&quot;: -9.179747581481934, &quot;IDs&quot;: &quot;ENSG00000249937&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.165892124176025, &quot;y&quot;: -11.807660102844238, &quot;IDs&quot;: &quot;ENSG00000250012&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.236026763916016, &quot;y&quot;: -12.588788032531738, &quot;IDs&quot;: &quot;ENSG00000250016&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0204784870147705, &quot;y&quot;: -8.664144515991211, &quot;IDs&quot;: &quot;ENSG00000250049&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7281745672225952, &quot;y&quot;: -9.158388137817383, &quot;IDs&quot;: &quot;ENSG00000250075&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.51683235168457, &quot;y&quot;: -11.23056697845459, &quot;IDs&quot;: &quot;ENSG00000250159&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.121762752532959, &quot;y&quot;: -9.742276191711426, &quot;IDs&quot;: &quot;ENSG00000250284&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.05921770632266998, &quot;y&quot;: -8.740169525146484, &quot;IDs&quot;: &quot;ENSG00000250286&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.408519268035889, &quot;y&quot;: -8.155423164367676, &quot;IDs&quot;: &quot;ENSG00000250303&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9596226215362549, &quot;y&quot;: -9.421448707580566, &quot;IDs&quot;: &quot;ENSG00000250312&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.592023849487305, &quot;y&quot;: -9.5140962600708, &quot;IDs&quot;: &quot;ENSG00000250318&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.37247896194458, &quot;y&quot;: -11.11736011505127, &quot;IDs&quot;: &quot;ENSG00000250320&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6358110904693604, &quot;y&quot;: -10.652029037475586, &quot;IDs&quot;: &quot;ENSG00000250519&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.532042384147644, &quot;y&quot;: -10.545693397521973, &quot;IDs&quot;: &quot;ENSG00000250546&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.20130760967731476, &quot;y&quot;: -8.315939903259277, &quot;IDs&quot;: &quot;ENSG00000250569&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7035073041915894, &quot;y&quot;: -11.340069770812988, &quot;IDs&quot;: &quot;ENSG00000250571&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8077609539031982, &quot;y&quot;: -8.718517303466797, &quot;IDs&quot;: &quot;ENSG00000250753&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1898961067199707, &quot;y&quot;: -11.371700286865234, &quot;IDs&quot;: &quot;ENSG00000250786&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8037168979644775, &quot;y&quot;: -12.980145454406738, &quot;IDs&quot;: &quot;ENSG00000250903&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.2775038480758667, &quot;y&quot;: -8.267226219177246, &quot;IDs&quot;: &quot;ENSG00000250950&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7401034832000732, &quot;y&quot;: -9.924772262573242, &quot;IDs&quot;: &quot;ENSG00000251095&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.1945459842681885, &quot;y&quot;: -11.786946296691895, &quot;IDs&quot;: &quot;ENSG00000251136&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.6587234735488892, &quot;y&quot;: -10.531245231628418, &quot;IDs&quot;: &quot;ENSG00000251247&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.927107334136963, &quot;y&quot;: -12.33634090423584, &quot;IDs&quot;: &quot;ENSG00000251287&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.636816501617432, &quot;y&quot;: -10.710211753845215, &quot;IDs&quot;: &quot;ENSG00000251364&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7788078188896179, &quot;y&quot;: -11.206978797912598, &quot;IDs&quot;: &quot;ENSG00000251455&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.8307647705078125, &quot;y&quot;: -11.814680099487305, &quot;IDs&quot;: &quot;ENSG00000251539&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.680609226226807, &quot;y&quot;: -9.767354965209961, &quot;IDs&quot;: &quot;ENSG00000251611&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6826326847076416, &quot;y&quot;: -11.533061027526855, &quot;IDs&quot;: &quot;ENSG00000251637&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8035821318626404, &quot;y&quot;: -9.154585838317871, &quot;IDs&quot;: &quot;ENSG00000252892&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.4359869956970215, &quot;y&quot;: -11.893257141113281, &quot;IDs&quot;: &quot;ENSG00000253210&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.759336471557617, &quot;y&quot;: -11.101908683776855, &quot;IDs&quot;: &quot;ENSG00000253227&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9603800773620605, &quot;y&quot;: -12.209389686584473, &quot;IDs&quot;: &quot;ENSG00000253417&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7413065433502197, &quot;y&quot;: -11.376138687133789, &quot;IDs&quot;: &quot;ENSG00000253508&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7859485149383545, &quot;y&quot;: -9.649605751037598, &quot;IDs&quot;: &quot;ENSG00000253535&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9358190298080444, &quot;y&quot;: -12.136632919311523, &quot;IDs&quot;: &quot;ENSG00000253554&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8018189668655396, &quot;y&quot;: -12.34801959991455, &quot;IDs&quot;: &quot;ENSG00000253671&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.271678924560547, &quot;y&quot;: -11.029071807861328, &quot;IDs&quot;: &quot;ENSG00000253771&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.286956787109375, &quot;y&quot;: -12.396575927734375, &quot;IDs&quot;: &quot;ENSG00000253819&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.5447492599487305, &quot;y&quot;: -9.957483291625977, &quot;IDs&quot;: &quot;ENSG00000253841&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6710474491119385, &quot;y&quot;: -10.515190124511719, &quot;IDs&quot;: &quot;ENSG00000253858&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.793276309967041, &quot;y&quot;: -10.846281051635742, &quot;IDs&quot;: &quot;ENSG00000253878&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.641957759857178, &quot;y&quot;: -8.8054838180542, &quot;IDs&quot;: &quot;ENSG00000254477&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.9755911827087402, &quot;y&quot;: -12.216643333435059, &quot;IDs&quot;: &quot;ENSG00000254560&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9018405079841614, &quot;y&quot;: -11.531431198120117, &quot;IDs&quot;: &quot;ENSG00000254718&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6006219983100891, &quot;y&quot;: -8.460956573486328, &quot;IDs&quot;: &quot;ENSG00000254750&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.6822433471679688, &quot;y&quot;: -9.183488845825195, &quot;IDs&quot;: &quot;ENSG00000254777&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.512303829193115, &quot;y&quot;: -11.757574081420898, &quot;IDs&quot;: &quot;ENSG00000254839&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.765568971633911, &quot;y&quot;: -8.52778148651123, &quot;IDs&quot;: &quot;ENSG00000254847&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.836267352104187, &quot;y&quot;: -9.712559700012207, &quot;IDs&quot;: &quot;ENSG00000254859&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.39427375793457, &quot;y&quot;: -9.840797424316406, &quot;IDs&quot;: &quot;ENSG00000255020&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.025282382965088, &quot;y&quot;: -8.49654769897461, &quot;IDs&quot;: &quot;ENSG00000255031&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6455196142196655, &quot;y&quot;: -6.464084148406982, &quot;IDs&quot;: &quot;ENSG00000255094&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5853562355041504, &quot;y&quot;: -11.025339126586914, &quot;IDs&quot;: &quot;ENSG00000255099&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.268194198608398, &quot;y&quot;: -10.559479713439941, &quot;IDs&quot;: &quot;ENSG00000255108&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.550819158554077, &quot;y&quot;: -11.599562644958496, &quot;IDs&quot;: &quot;ENSG00000255121&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.757172107696533, &quot;y&quot;: -11.576375007629395, &quot;IDs&quot;: &quot;ENSG00000255129&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.247781753540039, &quot;y&quot;: -10.795572280883789, &quot;IDs&quot;: &quot;ENSG00000255142&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.065116286277771, &quot;y&quot;: -7.734373092651367, &quot;IDs&quot;: &quot;ENSG00000255221&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.83917498588562, &quot;y&quot;: -10.425436019897461, &quot;IDs&quot;: &quot;ENSG00000255240&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.46253776550293, &quot;y&quot;: -8.99569034576416, &quot;IDs&quot;: &quot;ENSG00000255282&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7748804092407227, &quot;y&quot;: -11.892930030822754, &quot;IDs&quot;: &quot;ENSG00000255284&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.672914505004883, &quot;y&quot;: -8.611705780029297, &quot;IDs&quot;: &quot;ENSG00000255337&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5079848766326904, &quot;y&quot;: -10.782858848571777, &quot;IDs&quot;: &quot;ENSG00000255345&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.764744281768799, &quot;y&quot;: -10.970135688781738, &quot;IDs&quot;: &quot;ENSG00000255458&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.1852612495422363, &quot;y&quot;: -9.080988883972168, &quot;IDs&quot;: &quot;ENSG00000255471&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.09473276883363724, &quot;y&quot;: -9.450733184814453, &quot;IDs&quot;: &quot;ENSG00000255559&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.334295272827148, &quot;y&quot;: -10.493424415588379, &quot;IDs&quot;: &quot;ENSG00000255639&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.24993255734443665, &quot;y&quot;: -7.826206207275391, &quot;IDs&quot;: &quot;ENSG00000255710&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3198961019515991, &quot;y&quot;: -9.864106178283691, &quot;IDs&quot;: &quot;ENSG00000255867&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.556906223297119, &quot;y&quot;: -9.326759338378906, &quot;IDs&quot;: &quot;ENSG00000256312&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.5323171615600586, &quot;y&quot;: -12.28437614440918, &quot;IDs&quot;: &quot;ENSG00000256321&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0920463800430298, &quot;y&quot;: -11.087529182434082, &quot;IDs&quot;: &quot;ENSG00000256331&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.738405227661133, &quot;y&quot;: -10.918232917785645, &quot;IDs&quot;: &quot;ENSG00000256542&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9692009687423706, &quot;y&quot;: -11.725776672363281, &quot;IDs&quot;: &quot;ENSG00000256742&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.599854826927185, &quot;y&quot;: -9.672547340393066, &quot;IDs&quot;: &quot;ENSG00000256988&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.832601308822632, &quot;y&quot;: -9.917876243591309, &quot;IDs&quot;: &quot;ENSG00000257185&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1701231002807617, &quot;y&quot;: -7.808545112609863, &quot;IDs&quot;: &quot;ENSG00000257743&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.9722025394439697, &quot;y&quot;: -11.507095336914062, &quot;IDs&quot;: &quot;ENSG00000258053&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.510215163230896, &quot;y&quot;: -9.077555656433105, &quot;IDs&quot;: &quot;ENSG00000258199&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.4190300703048706, &quot;y&quot;: -9.5569429397583, &quot;IDs&quot;: &quot;ENSG00000258405&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4715962409973145, &quot;y&quot;: -12.123627662658691, &quot;IDs&quot;: &quot;ENSG00000258545&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.295281410217285, &quot;y&quot;: -9.730198860168457, &quot;IDs&quot;: &quot;ENSG00000258592&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.113490104675293, &quot;y&quot;: -8.757501602172852, &quot;IDs&quot;: &quot;ENSG00000258743&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.364826679229736, &quot;y&quot;: -9.3016357421875, &quot;IDs&quot;: &quot;ENSG00000258897&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.684052467346191, &quot;y&quot;: -7.846116542816162, &quot;IDs&quot;: &quot;ENSG00000258940&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.082645893096924, &quot;y&quot;: -7.9509992599487305, &quot;IDs&quot;: &quot;ENSG00000258969&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.580984115600586, &quot;y&quot;: -12.67495059967041, &quot;IDs&quot;: &quot;ENSG00000258986&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.468986988067627, &quot;y&quot;: -7.532402992248535, &quot;IDs&quot;: &quot;ENSG00000259048&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.203420639038086, &quot;y&quot;: -12.16418170928955, &quot;IDs&quot;: &quot;ENSG00000259065&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9001712799072266, &quot;y&quot;: -9.109169960021973, &quot;IDs&quot;: &quot;ENSG00000259070&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.2613658905029297, &quot;y&quot;: -9.86348819732666, &quot;IDs&quot;: &quot;ENSG00000259153&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.457132816314697, &quot;y&quot;: -9.364383697509766, &quot;IDs&quot;: &quot;ENSG00000259178&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1704952716827393, &quot;y&quot;: -12.96025562286377, &quot;IDs&quot;: &quot;ENSG00000259209&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7315964102745056, &quot;y&quot;: -9.172226905822754, &quot;IDs&quot;: &quot;ENSG00000259295&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9688045978546143, &quot;y&quot;: -10.039402961730957, &quot;IDs&quot;: &quot;ENSG00000259315&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.680322170257568, &quot;y&quot;: -8.735520362854004, &quot;IDs&quot;: &quot;ENSG00000259319&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.727964401245117, &quot;y&quot;: -7.253107070922852, &quot;IDs&quot;: &quot;ENSG00000259343&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.711744546890259, &quot;y&quot;: -9.67251968383789, &quot;IDs&quot;: &quot;ENSG00000259349&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0724236965179443, &quot;y&quot;: -9.683785438537598, &quot;IDs&quot;: &quot;ENSG00000259363&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5020360946655273, &quot;y&quot;: -10.765815734863281, &quot;IDs&quot;: &quot;ENSG00000259424&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6346187591552734, &quot;y&quot;: -8.784438133239746, &quot;IDs&quot;: &quot;ENSG00000259430&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6883333921432495, &quot;y&quot;: -9.141952514648438, &quot;IDs&quot;: &quot;ENSG00000259518&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.4093034267425537, &quot;y&quot;: -9.798666954040527, &quot;IDs&quot;: &quot;ENSG00000259610&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3404462337493896, &quot;y&quot;: -10.516952514648438, &quot;IDs&quot;: &quot;ENSG00000259658&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5558617115020752, &quot;y&quot;: -11.354503631591797, &quot;IDs&quot;: &quot;ENSG00000259719&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.3446020185947418, &quot;y&quot;: -9.721692085266113, &quot;IDs&quot;: &quot;ENSG00000259744&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6148508191108704, &quot;y&quot;: -8.517549514770508, &quot;IDs&quot;: &quot;ENSG00000259786&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.038212776184082, &quot;y&quot;: -11.494160652160645, &quot;IDs&quot;: &quot;ENSG00000259834&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.6844902038574219, &quot;y&quot;: -11.946266174316406, &quot;IDs&quot;: &quot;ENSG00000259954&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8777639865875244, &quot;y&quot;: -11.573613166809082, &quot;IDs&quot;: &quot;ENSG00000259969&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7708957195281982, &quot;y&quot;: -10.982075691223145, &quot;IDs&quot;: &quot;ENSG00000260066&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.234698295593262, &quot;y&quot;: -10.653928756713867, &quot;IDs&quot;: &quot;ENSG00000260077&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.776381969451904, &quot;y&quot;: -10.629056930541992, &quot;IDs&quot;: &quot;ENSG00000260081&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1105828285217285, &quot;y&quot;: -8.571364402770996, &quot;IDs&quot;: &quot;ENSG00000260141&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9243753552436829, &quot;y&quot;: -11.599946975708008, &quot;IDs&quot;: &quot;ENSG00000260198&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.624297142028809, &quot;y&quot;: -10.098833084106445, &quot;IDs&quot;: &quot;ENSG00000260232&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3418771028518677, &quot;y&quot;: -9.089910507202148, &quot;IDs&quot;: &quot;ENSG00000260261&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.103769063949585, &quot;y&quot;: -8.264814376831055, &quot;IDs&quot;: &quot;ENSG00000260287&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.74416971206665, &quot;y&quot;: -8.320833206176758, &quot;IDs&quot;: &quot;ENSG00000260352&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1717034578323364, &quot;y&quot;: -8.31769847869873, &quot;IDs&quot;: &quot;ENSG00000260400&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.408912181854248, &quot;y&quot;: -9.69775390625, &quot;IDs&quot;: &quot;ENSG00000260409&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.64229679107666, &quot;y&quot;: -9.222768783569336, &quot;IDs&quot;: &quot;ENSG00000260412&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3972928524017334, &quot;y&quot;: -11.546367645263672, &quot;IDs&quot;: &quot;ENSG00000260442&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.527841567993164, &quot;y&quot;: -8.56624698638916, &quot;IDs&quot;: &quot;ENSG00000260500&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.922351598739624, &quot;y&quot;: -9.52413272857666, &quot;IDs&quot;: &quot;ENSG00000260577&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3745423555374146, &quot;y&quot;: -12.15797233581543, &quot;IDs&quot;: &quot;ENSG00000260584&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.316193103790283, &quot;y&quot;: -12.55388069152832, &quot;IDs&quot;: &quot;ENSG00000260604&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.6719826459884644, &quot;y&quot;: -9.69189739227295, &quot;IDs&quot;: &quot;ENSG00000260611&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.289170742034912, &quot;y&quot;: -10.685822486877441, &quot;IDs&quot;: &quot;ENSG00000260625&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.4605847597122192, &quot;y&quot;: -7.22290563583374, &quot;IDs&quot;: &quot;ENSG00000260644&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.466867208480835, &quot;y&quot;: -8.182095527648926, &quot;IDs&quot;: &quot;ENSG00000260645&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.328014850616455, &quot;y&quot;: -11.384841918945312, &quot;IDs&quot;: &quot;ENSG00000260650&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.5084228515625, &quot;y&quot;: -8.462274551391602, &quot;IDs&quot;: &quot;ENSG00000260653&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.6972784996032715, &quot;y&quot;: -7.992033958435059, &quot;IDs&quot;: &quot;ENSG00000260725&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.7810235023498535, &quot;y&quot;: -7.15999174118042, &quot;IDs&quot;: &quot;ENSG00000260750&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.125977039337158, &quot;y&quot;: -11.546087265014648, &quot;IDs&quot;: &quot;ENSG00000260777&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8917686343193054, &quot;y&quot;: -11.505192756652832, &quot;IDs&quot;: &quot;ENSG00000260793&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.293529033660889, &quot;y&quot;: -11.002601623535156, &quot;IDs&quot;: &quot;ENSG00000260798&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9439005851745605, &quot;y&quot;: -11.219040870666504, &quot;IDs&quot;: &quot;ENSG00000260857&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.362000465393066, &quot;y&quot;: -10.072345733642578, &quot;IDs&quot;: &quot;ENSG00000260874&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.786648750305176, &quot;y&quot;: -7.7114715576171875, &quot;IDs&quot;: &quot;ENSG00000260947&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7480445504188538, &quot;y&quot;: -10.678996086120605, &quot;IDs&quot;: &quot;ENSG00000260949&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7334403395652771, &quot;y&quot;: -7.688391208648682, &quot;IDs&quot;: &quot;ENSG00000261038&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5905016660690308, &quot;y&quot;: -11.36720085144043, &quot;IDs&quot;: &quot;ENSG00000261039&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.387474060058594, &quot;y&quot;: -11.365001678466797, &quot;IDs&quot;: &quot;ENSG00000261040&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1117554903030396, &quot;y&quot;: -11.305291175842285, &quot;IDs&quot;: &quot;ENSG00000261054&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.218253135681152, &quot;y&quot;: -9.819284439086914, &quot;IDs&quot;: &quot;ENSG00000261115&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.293119430541992, &quot;y&quot;: -12.258606910705566, &quot;IDs&quot;: &quot;ENSG00000261210&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6437976360321045, &quot;y&quot;: -11.088556289672852, &quot;IDs&quot;: &quot;ENSG00000261251&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.4835979640483856, &quot;y&quot;: -7.444892883300781, &quot;IDs&quot;: &quot;ENSG00000261302&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.673075795173645, &quot;y&quot;: -8.813790321350098, &quot;IDs&quot;: &quot;ENSG00000261319&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.4230653047561646, &quot;y&quot;: -10.525620460510254, &quot;IDs&quot;: &quot;ENSG00000261360&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.1192214488983154, &quot;y&quot;: -10.108898162841797, &quot;IDs&quot;: &quot;ENSG00000261366&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.034656047821045, &quot;y&quot;: -8.065503120422363, &quot;IDs&quot;: &quot;ENSG00000261524&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.420889377593994, &quot;y&quot;: -7.770384311676025, &quot;IDs&quot;: &quot;ENSG00000261572&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9938725233078003, &quot;y&quot;: -10.799813270568848, &quot;IDs&quot;: &quot;ENSG00000261575&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.0807976722717285, &quot;y&quot;: -9.53800106048584, &quot;IDs&quot;: &quot;ENSG00000261645&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3436925411224365, &quot;y&quot;: -10.394018173217773, &quot;IDs&quot;: &quot;ENSG00000261655&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.6401214599609375, &quot;y&quot;: -8.910103797912598, &quot;IDs&quot;: &quot;ENSG00000261770&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.011198878288269, &quot;y&quot;: -10.92395305633545, &quot;IDs&quot;: &quot;ENSG00000261959&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.154715061187744, &quot;y&quot;: -7.893505573272705, &quot;IDs&quot;: &quot;ENSG00000262096&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.563721179962158, &quot;y&quot;: -9.71281909942627, &quot;IDs&quot;: &quot;ENSG00000262185&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.4707554876804352, &quot;y&quot;: -11.231989860534668, &quot;IDs&quot;: &quot;ENSG00000262209&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.001958131790161, &quot;y&quot;: -9.949520111083984, &quot;IDs&quot;: &quot;ENSG00000262333&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.563307762145996, &quot;y&quot;: -7.949018955230713, &quot;IDs&quot;: &quot;ENSG00000262823&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.6958627700805664, &quot;y&quot;: -10.987046241760254, &quot;IDs&quot;: &quot;ENSG00000262877&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5449492931365967, &quot;y&quot;: -10.430351257324219, &quot;IDs&quot;: &quot;ENSG00000263363&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.3075675070285797, &quot;y&quot;: -9.853513717651367, &quot;IDs&quot;: &quot;ENSG00000263412&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9232609272003174, &quot;y&quot;: -12.351398468017578, &quot;IDs&quot;: &quot;ENSG00000263597&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.956904649734497, &quot;y&quot;: -7.919254302978516, &quot;IDs&quot;: &quot;ENSG00000263834&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8946316242218018, &quot;y&quot;: -10.239514350891113, &quot;IDs&quot;: &quot;ENSG00000264015&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.150552988052368, &quot;y&quot;: -10.507351875305176, &quot;IDs&quot;: &quot;ENSG00000264278&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.032674551010132, &quot;y&quot;: -11.11283016204834, &quot;IDs&quot;: &quot;ENSG00000264672&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9574177265167236, &quot;y&quot;: -10.685011863708496, &quot;IDs&quot;: &quot;ENSG00000264775&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2044219970703125, &quot;y&quot;: -9.57565689086914, &quot;IDs&quot;: &quot;ENSG00000264843&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.049347162246704, &quot;y&quot;: -9.795141220092773, &quot;IDs&quot;: &quot;ENSG00000264956&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.2262651920318604, &quot;y&quot;: -11.530237197875977, &quot;IDs&quot;: &quot;ENSG00000264964&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.994449138641357, &quot;y&quot;: -9.059751510620117, &quot;IDs&quot;: &quot;ENSG00000265015&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6425323486328125, &quot;y&quot;: -11.101505279541016, &quot;IDs&quot;: &quot;ENSG00000265055&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.775321960449219, &quot;y&quot;: -9.95539665222168, &quot;IDs&quot;: &quot;ENSG00000265349&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.19536326825618744, &quot;y&quot;: -7.985830783843994, &quot;IDs&quot;: &quot;ENSG00000265413&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5924763679504395, &quot;y&quot;: -10.02773380279541, &quot;IDs&quot;: &quot;ENSG00000265702&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1229400634765625, &quot;y&quot;: -11.736740112304688, &quot;IDs&quot;: &quot;ENSG00000265750&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.067661285400391, &quot;y&quot;: -7.900897979736328, &quot;IDs&quot;: &quot;ENSG00000265763&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.2699923515319824, &quot;y&quot;: -8.745911598205566, &quot;IDs&quot;: &quot;ENSG00000265888&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.36773353815078735, &quot;y&quot;: -10.193452835083008, &quot;IDs&quot;: &quot;ENSG00000265982&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3095898628234863, &quot;y&quot;: -11.157072067260742, &quot;IDs&quot;: &quot;ENSG00000266306&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.4342682361602783, &quot;y&quot;: -10.45405101776123, &quot;IDs&quot;: &quot;ENSG00000266313&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.836264133453369, &quot;y&quot;: -9.68736743927002, &quot;IDs&quot;: &quot;ENSG00000266869&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.758342742919922, &quot;y&quot;: -8.978201866149902, &quot;IDs&quot;: &quot;ENSG00000266885&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.1556172370910645, &quot;y&quot;: -11.751988410949707, &quot;IDs&quot;: &quot;ENSG00000266903&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5568671226501465, &quot;y&quot;: -10.73270034790039, &quot;IDs&quot;: &quot;ENSG00000266904&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.228579044342041, &quot;y&quot;: -11.819056510925293, &quot;IDs&quot;: &quot;ENSG00000266970&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0584487915039062, &quot;y&quot;: -11.494211196899414, &quot;IDs&quot;: &quot;ENSG00000266983&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.985565423965454, &quot;y&quot;: -12.350831985473633, &quot;IDs&quot;: &quot;ENSG00000267016&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5353221893310547, &quot;y&quot;: -8.843518257141113, &quot;IDs&quot;: &quot;ENSG00000267030&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.4761791229248047, &quot;y&quot;: -10.538050651550293, &quot;IDs&quot;: &quot;ENSG00000267080&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7149908542633057, &quot;y&quot;: -12.721562385559082, &quot;IDs&quot;: &quot;ENSG00000267191&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3188703060150146, &quot;y&quot;: -11.424959182739258, &quot;IDs&quot;: &quot;ENSG00000267199&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1138741970062256, &quot;y&quot;: -9.493703842163086, &quot;IDs&quot;: &quot;ENSG00000267248&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8651577830314636, &quot;y&quot;: -7.409103870391846, &quot;IDs&quot;: &quot;ENSG00000267264&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8288426995277405, &quot;y&quot;: -9.941462516784668, &quot;IDs&quot;: &quot;ENSG00000267272&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3305723667144775, &quot;y&quot;: -10.029874801635742, &quot;IDs&quot;: &quot;ENSG00000267313&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.277093887329102, &quot;y&quot;: -8.210559844970703, &quot;IDs&quot;: &quot;ENSG00000267327&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8382776975631714, &quot;y&quot;: -9.534502983093262, &quot;IDs&quot;: &quot;ENSG00000267345&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.3241405189037323, &quot;y&quot;: -9.316344261169434, &quot;IDs&quot;: &quot;ENSG00000267370&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7322983741760254, &quot;y&quot;: -9.728775978088379, &quot;IDs&quot;: &quot;ENSG00000267394&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.9523303508758545, &quot;y&quot;: -10.049511909484863, &quot;IDs&quot;: &quot;ENSG00000267416&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.623711585998535, &quot;y&quot;: -8.831771850585938, &quot;IDs&quot;: &quot;ENSG00000267424&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8314670324325562, &quot;y&quot;: -9.321292877197266, &quot;IDs&quot;: &quot;ENSG00000267500&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7127066254615784, &quot;y&quot;: -7.306549072265625, &quot;IDs&quot;: &quot;ENSG00000267509&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9905357360839844, &quot;y&quot;: -9.41141128540039, &quot;IDs&quot;: &quot;ENSG00000267530&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.510618209838867, &quot;y&quot;: -8.548701286315918, &quot;IDs&quot;: &quot;ENSG00000267546&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8437507748603821, &quot;y&quot;: -11.53522777557373, &quot;IDs&quot;: &quot;ENSG00000267666&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.6489667892456055, &quot;y&quot;: -7.327524185180664, &quot;IDs&quot;: &quot;ENSG00000267707&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7236733436584473, &quot;y&quot;: -8.328210830688477, &quot;IDs&quot;: &quot;ENSG00000267780&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.147087574005127, &quot;y&quot;: -11.685382843017578, &quot;IDs&quot;: &quot;ENSG00000267886&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7068302631378174, &quot;y&quot;: -9.35832691192627, &quot;IDs&quot;: &quot;ENSG00000268204&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.4699794054031372, &quot;y&quot;: -12.184139251708984, &quot;IDs&quot;: &quot;ENSG00000268324&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.27787455916404724, &quot;y&quot;: -6.804981708526611, &quot;IDs&quot;: &quot;ENSG00000268355&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.972649097442627, &quot;y&quot;: -10.768064498901367, &quot;IDs&quot;: &quot;ENSG00000268362&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.4007110595703125, &quot;y&quot;: -9.437644004821777, &quot;IDs&quot;: &quot;ENSG00000268560&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.5832463502883911, &quot;y&quot;: -8.964152336120605, &quot;IDs&quot;: &quot;ENSG00000268583&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.00602126121521, &quot;y&quot;: -9.606218338012695, &quot;IDs&quot;: &quot;ENSG00000268592&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.344937801361084, &quot;y&quot;: -8.732467651367188, &quot;IDs&quot;: &quot;ENSG00000268658&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.340059280395508, &quot;y&quot;: -10.868623733520508, &quot;IDs&quot;: &quot;ENSG00000268902&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.1154592037200928, &quot;y&quot;: -11.317471504211426, &quot;IDs&quot;: &quot;ENSG00000268926&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0084750652313232, &quot;y&quot;: -11.463665008544922, &quot;IDs&quot;: &quot;ENSG00000269068&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1588577032089233, &quot;y&quot;: -10.791857719421387, &quot;IDs&quot;: &quot;ENSG00000269097&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.49365496635437, &quot;y&quot;: -12.566606521606445, &quot;IDs&quot;: &quot;ENSG00000269226&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.652558326721191, &quot;y&quot;: -10.973743438720703, &quot;IDs&quot;: &quot;ENSG00000269388&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3394438028335571, &quot;y&quot;: -9.600736618041992, &quot;IDs&quot;: &quot;ENSG00000269514&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.181408643722534, &quot;y&quot;: -11.839369773864746, &quot;IDs&quot;: &quot;ENSG00000269609&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.07071220129728317, &quot;y&quot;: -9.830876350402832, &quot;IDs&quot;: &quot;ENSG00000269815&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.865967035293579, &quot;y&quot;: -11.117721557617188, &quot;IDs&quot;: &quot;ENSG00000269834&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8121659755706787, &quot;y&quot;: -10.6694917678833, &quot;IDs&quot;: &quot;ENSG00000269837&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7162005305290222, &quot;y&quot;: -10.997732162475586, &quot;IDs&quot;: &quot;ENSG00000269842&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.14110083878040314, &quot;y&quot;: -9.457842826843262, &quot;IDs&quot;: &quot;ENSG00000269959&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.4877214431762695, &quot;y&quot;: -9.736749649047852, &quot;IDs&quot;: &quot;ENSG00000269978&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.629989504814148, &quot;y&quot;: -10.041245460510254, &quot;IDs&quot;: &quot;ENSG00000269997&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.8406386375427246, &quot;y&quot;: -10.249290466308594, &quot;IDs&quot;: &quot;ENSG00000270049&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6878076195716858, &quot;y&quot;: -9.652414321899414, &quot;IDs&quot;: &quot;ENSG00000270061&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.492282509803772, &quot;y&quot;: -9.846356391906738, &quot;IDs&quot;: &quot;ENSG00000270095&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.316292643547058, &quot;y&quot;: -9.924631118774414, &quot;IDs&quot;: &quot;ENSG00000270164&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.1464879512786865, &quot;y&quot;: -10.114835739135742, &quot;IDs&quot;: &quot;ENSG00000270332&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.616701364517212, &quot;y&quot;: -10.150091171264648, &quot;IDs&quot;: &quot;ENSG00000270504&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9174861907958984, &quot;y&quot;: -9.60776138305664, &quot;IDs&quot;: &quot;ENSG00000270557&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8128998279571533, &quot;y&quot;: -9.94312572479248, &quot;IDs&quot;: &quot;ENSG00000270605&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1728851795196533, &quot;y&quot;: -10.939094543457031, &quot;IDs&quot;: &quot;ENSG00000270673&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6023079752922058, &quot;y&quot;: -9.505636215209961, &quot;IDs&quot;: &quot;ENSG00000270761&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.068138599395752, &quot;y&quot;: -10.170937538146973, &quot;IDs&quot;: &quot;ENSG00000270876&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.913353204727173, &quot;y&quot;: -11.657508850097656, &quot;IDs&quot;: &quot;ENSG00000270977&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.67848801612854, &quot;y&quot;: -11.002725601196289, &quot;IDs&quot;: &quot;ENSG00000271151&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.578948974609375, &quot;y&quot;: -10.027085304260254, &quot;IDs&quot;: &quot;ENSG00000271155&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9889200925827026, &quot;y&quot;: -11.600808143615723, &quot;IDs&quot;: &quot;ENSG00000271200&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.115156412124634, &quot;y&quot;: -9.045865058898926, &quot;IDs&quot;: &quot;ENSG00000271270&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.138190746307373, &quot;y&quot;: -11.53309154510498, &quot;IDs&quot;: &quot;ENSG00000271335&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.4215192794799805, &quot;y&quot;: -10.120893478393555, &quot;IDs&quot;: &quot;ENSG00000271380&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7251927852630615, &quot;y&quot;: -11.58359146118164, &quot;IDs&quot;: &quot;ENSG00000271387&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.336617946624756, &quot;y&quot;: -11.385787963867188, &quot;IDs&quot;: &quot;ENSG00000271584&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.599920630455017, &quot;y&quot;: -11.759286880493164, &quot;IDs&quot;: &quot;ENSG00000271646&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.2739357948303223, &quot;y&quot;: -11.055632591247559, &quot;IDs&quot;: &quot;ENSG00000271855&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.28236198425293, &quot;y&quot;: -11.318832397460938, &quot;IDs&quot;: &quot;ENSG00000271947&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.634721279144287, &quot;y&quot;: -9.408443450927734, &quot;IDs&quot;: &quot;ENSG00000272031&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3528892993927, &quot;y&quot;: -10.5012845993042, &quot;IDs&quot;: &quot;ENSG00000272195&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.2934664487838745, &quot;y&quot;: -9.507111549377441, &quot;IDs&quot;: &quot;ENSG00000272205&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.8247358798980713, &quot;y&quot;: -9.378348350524902, &quot;IDs&quot;: &quot;ENSG00000272221&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.2511129379272461, &quot;y&quot;: -9.538728713989258, &quot;IDs&quot;: &quot;ENSG00000272374&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8674254417419434, &quot;y&quot;: -9.072774887084961, &quot;IDs&quot;: &quot;ENSG00000272473&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.027059078216553, &quot;y&quot;: -10.061396598815918, &quot;IDs&quot;: &quot;ENSG00000272482&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.583774566650391, &quot;y&quot;: -9.773831367492676, &quot;IDs&quot;: &quot;ENSG00000272502&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.190905570983887, &quot;y&quot;: -11.635568618774414, &quot;IDs&quot;: &quot;ENSG00000272523&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8895142078399658, &quot;y&quot;: -10.443955421447754, &quot;IDs&quot;: &quot;ENSG00000272631&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5619961619377136, &quot;y&quot;: -8.696051597595215, &quot;IDs&quot;: &quot;ENSG00000272638&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.006077766418457, &quot;y&quot;: -10.307638168334961, &quot;IDs&quot;: &quot;ENSG00000272668&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.5955898761749268, &quot;y&quot;: -10.832221031188965, &quot;IDs&quot;: &quot;ENSG00000272674&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1830267906188965, &quot;y&quot;: -11.056551933288574, &quot;IDs&quot;: &quot;ENSG00000272693&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9310234785079956, &quot;y&quot;: -9.367167472839355, &quot;IDs&quot;: &quot;ENSG00000272746&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6238226890563965, &quot;y&quot;: -10.093759536743164, &quot;IDs&quot;: &quot;ENSG00000272791&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7597500681877136, &quot;y&quot;: -10.815359115600586, &quot;IDs&quot;: &quot;ENSG00000272854&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.18916654586792, &quot;y&quot;: -10.257835388183594, &quot;IDs&quot;: &quot;ENSG00000272870&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.2225573062896729, &quot;y&quot;: -8.682402610778809, &quot;IDs&quot;: &quot;ENSG00000272872&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.084913730621338, &quot;y&quot;: -12.084272384643555, &quot;IDs&quot;: &quot;ENSG00000272894&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1917448043823242, &quot;y&quot;: -11.459017753601074, &quot;IDs&quot;: &quot;ENSG00000272916&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.004611849784851, &quot;y&quot;: -9.42663288116455, &quot;IDs&quot;: &quot;ENSG00000273002&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.508355140686035, &quot;y&quot;: -9.136367797851562, &quot;IDs&quot;: &quot;ENSG00000273082&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.063460350036621, &quot;y&quot;: -10.9871826171875, &quot;IDs&quot;: &quot;ENSG00000273129&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9251195788383484, &quot;y&quot;: -10.47211742401123, &quot;IDs&quot;: &quot;ENSG00000273141&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.6522419452667236, &quot;y&quot;: -9.329201698303223, &quot;IDs&quot;: &quot;ENSG00000273162&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.4549715518951416, &quot;y&quot;: -10.94933795928955, &quot;IDs&quot;: &quot;ENSG00000273196&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0285441875457764, &quot;y&quot;: -11.621211051940918, &quot;IDs&quot;: &quot;ENSG00000273211&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.792256474494934, &quot;y&quot;: -12.312054634094238, &quot;IDs&quot;: &quot;ENSG00000273212&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.9411400556564331, &quot;y&quot;: -9.95695686340332, &quot;IDs&quot;: &quot;ENSG00000273243&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9282749891281128, &quot;y&quot;: -11.776679992675781, &quot;IDs&quot;: &quot;ENSG00000273253&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8983561992645264, &quot;y&quot;: -8.651442527770996, &quot;IDs&quot;: &quot;ENSG00000273265&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.111915111541748, &quot;y&quot;: -8.63425350189209, &quot;IDs&quot;: &quot;ENSG00000273297&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5023441314697266, &quot;y&quot;: -8.934626579284668, &quot;IDs&quot;: &quot;ENSG00000273305&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.554330587387085, &quot;y&quot;: -9.116032600402832, &quot;IDs&quot;: &quot;ENSG00000273329&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.595048189163208, &quot;y&quot;: -9.657011985778809, &quot;IDs&quot;: &quot;ENSG00000273340&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7884039878845215, &quot;y&quot;: -10.873940467834473, &quot;IDs&quot;: &quot;ENSG00000273344&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.1187286376953125, &quot;y&quot;: -11.411955833435059, &quot;IDs&quot;: &quot;ENSG00000273362&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2640163898468018, &quot;y&quot;: -10.0988130569458, &quot;IDs&quot;: &quot;ENSG00000273363&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7759339809417725, &quot;y&quot;: -10.714193344116211, &quot;IDs&quot;: &quot;ENSG00000273472&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7754244804382324, &quot;y&quot;: -10.147507667541504, &quot;IDs&quot;: &quot;ENSG00000273554&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.2199057340621948, &quot;y&quot;: -9.916265487670898, &quot;IDs&quot;: &quot;ENSG00000273599&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.08096853643655777, &quot;y&quot;: -7.478417873382568, &quot;IDs&quot;: &quot;ENSG00000273639&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.9193673133850098, &quot;y&quot;: -8.214659690856934, &quot;IDs&quot;: &quot;ENSG00000273674&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.386218547821045, &quot;y&quot;: -9.021170616149902, &quot;IDs&quot;: &quot;ENSG00000273872&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.926766872406006, &quot;y&quot;: -7.861490249633789, &quot;IDs&quot;: &quot;ENSG00000274099&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.3117583096027374, &quot;y&quot;: -8.714237213134766, &quot;IDs&quot;: &quot;ENSG00000274114&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.479493618011475, &quot;y&quot;: -10.101588249206543, &quot;IDs&quot;: &quot;ENSG00000274270&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.369556427001953, &quot;y&quot;: -8.906746864318848, &quot;IDs&quot;: &quot;ENSG00000274680&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5032198429107666, &quot;y&quot;: -11.917028427124023, &quot;IDs&quot;: &quot;ENSG00000274767&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.027593182399868965, &quot;y&quot;: -8.971761703491211, &quot;IDs&quot;: &quot;ENSG00000274928&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -1.7948765754699707, &quot;y&quot;: 2.693087339401245, &quot;IDs&quot;: &quot;ENSG00000275212&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.360725164413452, &quot;y&quot;: -9.886510848999023, &quot;IDs&quot;: &quot;ENSG00000275223&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.9856864213943481, &quot;y&quot;: -10.1142578125, &quot;IDs&quot;: &quot;ENSG00000275437&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6953004598617554, &quot;y&quot;: -10.291301727294922, &quot;IDs&quot;: &quot;ENSG00000275484&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.511778712272644, &quot;y&quot;: -10.864025115966797, &quot;IDs&quot;: &quot;ENSG00000275542&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.542359471321106, &quot;y&quot;: -9.498801231384277, &quot;IDs&quot;: &quot;ENSG00000275549&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.916800022125244, &quot;y&quot;: -12.326621055603027, &quot;IDs&quot;: &quot;ENSG00000275552&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.116340160369873, &quot;y&quot;: -7.547008991241455, &quot;IDs&quot;: &quot;ENSG00000275591&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0365303754806519, &quot;y&quot;: -11.663121223449707, &quot;IDs&quot;: &quot;ENSG00000275613&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8835456371307373, &quot;y&quot;: -11.819101333618164, &quot;IDs&quot;: &quot;ENSG00000275807&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.7524583339691162, &quot;y&quot;: -12.150104522705078, &quot;IDs&quot;: &quot;ENSG00000275902&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.45464789867401123, &quot;y&quot;: -7.701704025268555, &quot;IDs&quot;: &quot;ENSG00000276071&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.32900211215019226, &quot;y&quot;: -10.076659202575684, &quot;IDs&quot;: &quot;ENSG00000276118&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5870642066001892, &quot;y&quot;: -9.911175727844238, &quot;IDs&quot;: &quot;ENSG00000276141&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8700027465820312, &quot;y&quot;: -11.996122360229492, &quot;IDs&quot;: &quot;ENSG00000276505&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.307712197303772, &quot;y&quot;: -9.570019721984863, &quot;IDs&quot;: &quot;ENSG00000276710&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.125114440917969, &quot;y&quot;: -8.98105239868164, &quot;IDs&quot;: &quot;ENSG00000276772&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5040638446807861, &quot;y&quot;: -11.451937675476074, &quot;IDs&quot;: &quot;ENSG00000277112&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.748509883880615, &quot;y&quot;: -7.6672892570495605, &quot;IDs&quot;: &quot;ENSG00000277117&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3604313135147095, &quot;y&quot;: -11.193625450134277, &quot;IDs&quot;: &quot;ENSG00000277152&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.1571836471557617, &quot;y&quot;: -11.860723495483398, &quot;IDs&quot;: &quot;ENSG00000277287&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8729401230812073, &quot;y&quot;: -9.72719955444336, &quot;IDs&quot;: &quot;ENSG00000277382&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.5164597034454346, &quot;y&quot;: -11.268294334411621, &quot;IDs&quot;: &quot;ENSG00000277511&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3001866340637207, &quot;y&quot;: -9.710267066955566, &quot;IDs&quot;: &quot;ENSG00000277531&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.905754804611206, &quot;y&quot;: -10.618861198425293, &quot;IDs&quot;: &quot;ENSG00000277639&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2861859798431396, &quot;y&quot;: -7.463078022003174, &quot;IDs&quot;: &quot;ENSG00000277741&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.1442745327949524, &quot;y&quot;: -8.684828758239746, &quot;IDs&quot;: &quot;ENSG00000277744&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.9562089443206787, &quot;y&quot;: -10.054161071777344, &quot;IDs&quot;: &quot;ENSG00000277999&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.157896995544434, &quot;y&quot;: -12.253094673156738, &quot;IDs&quot;: &quot;ENSG00000278023&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.5173736810684204, &quot;y&quot;: -10.883809089660645, &quot;IDs&quot;: &quot;ENSG00000278041&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.47781211137771606, &quot;y&quot;: -8.99113941192627, &quot;IDs&quot;: &quot;ENSG00000278467&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.902597188949585, &quot;y&quot;: -12.202893257141113, &quot;IDs&quot;: &quot;ENSG00000278535&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.2228076457977295, &quot;y&quot;: -9.898538589477539, &quot;IDs&quot;: &quot;ENSG00000278673&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.662734270095825, &quot;y&quot;: -12.828021049499512, &quot;IDs&quot;: &quot;ENSG00000278817&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.918172836303711, &quot;y&quot;: -9.174099922180176, &quot;IDs&quot;: &quot;ENSG00000278897&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5655124187469482, &quot;y&quot;: -8.64356803894043, &quot;IDs&quot;: &quot;ENSG00000278931&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.785301208496094, &quot;y&quot;: -10.056682586669922, &quot;IDs&quot;: &quot;ENSG00000278948&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.10413471609354019, &quot;y&quot;: -8.203386306762695, &quot;IDs&quot;: &quot;ENSG00000279026&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.650032043457031, &quot;y&quot;: -10.55015754699707, &quot;IDs&quot;: &quot;ENSG00000279042&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7804551124572754, &quot;y&quot;: -9.94880199432373, &quot;IDs&quot;: &quot;ENSG00000279080&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.4299195408821106, &quot;y&quot;: -7.600606918334961, &quot;IDs&quot;: &quot;ENSG00000279161&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.439660906791687, &quot;y&quot;: -9.151363372802734, &quot;IDs&quot;: &quot;ENSG00000279208&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.4174152612686157, &quot;y&quot;: -8.783946990966797, &quot;IDs&quot;: &quot;ENSG00000279259&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.29286307096481323, &quot;y&quot;: -10.106781959533691, &quot;IDs&quot;: &quot;ENSG00000279479&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7319817543029785, &quot;y&quot;: -10.04095458984375, &quot;IDs&quot;: &quot;ENSG00000279511&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7627155780792236, &quot;y&quot;: -11.510213851928711, &quot;IDs&quot;: &quot;ENSG00000279561&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.235198974609375, &quot;y&quot;: -9.271821975708008, &quot;IDs&quot;: &quot;ENSG00000279569&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.07922456413507462, &quot;y&quot;: -7.457548141479492, &quot;IDs&quot;: &quot;ENSG00000279611&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.4710241556167603, &quot;y&quot;: -10.0228853225708, &quot;IDs&quot;: &quot;ENSG00000279641&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.8962496519088745, &quot;y&quot;: -9.904081344604492, &quot;IDs&quot;: &quot;ENSG00000279672&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.024660110473633, &quot;y&quot;: -9.533401489257812, &quot;IDs&quot;: &quot;ENSG00000279718&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.4683028757572174, &quot;y&quot;: -11.0737943649292, &quot;IDs&quot;: &quot;ENSG00000279726&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.2513071298599243, &quot;y&quot;: -9.617438316345215, &quot;IDs&quot;: &quot;ENSG00000279742&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.5962942838668823, &quot;y&quot;: -9.391962051391602, &quot;IDs&quot;: &quot;ENSG00000279771&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.4454989433288574, &quot;y&quot;: -10.454475402832031, &quot;IDs&quot;: &quot;ENSG00000279803&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.15770334005355835, &quot;y&quot;: -8.670015335083008, &quot;IDs&quot;: &quot;ENSG00000279837&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.0125210285186768, &quot;y&quot;: -10.96883773803711, &quot;IDs&quot;: &quot;ENSG00000279873&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.828816533088684, &quot;y&quot;: -11.060845375061035, &quot;IDs&quot;: &quot;ENSG00000279924&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.027876377105713, &quot;y&quot;: -9.550592422485352, &quot;IDs&quot;: &quot;ENSG00000280043&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7448967695236206, &quot;y&quot;: -11.229681015014648, &quot;IDs&quot;: &quot;ENSG00000280079&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.756793737411499, &quot;y&quot;: -7.945260524749756, &quot;IDs&quot;: &quot;ENSG00000280239&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.1381092071533203, &quot;y&quot;: -10.350935935974121, &quot;IDs&quot;: &quot;ENSG00000280362&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.316680908203125, &quot;y&quot;: -9.59700870513916, &quot;IDs&quot;: &quot;ENSG00000280435&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.2114129066467285, &quot;y&quot;: -9.641877174377441, &quot;IDs&quot;: &quot;ENSG00000280445&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3473217487335205, &quot;y&quot;: -10.52134895324707, &quot;IDs&quot;: &quot;ENSG00000280798&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.0664472579956055, &quot;y&quot;: -9.552417755126953, &quot;IDs&quot;: &quot;ENSG00000281128&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8865420818328857, &quot;y&quot;: -12.26679801940918, &quot;IDs&quot;: &quot;ENSG00000281358&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.5298447608947754, &quot;y&quot;: -7.509070873260498, &quot;IDs&quot;: &quot;ENSG00000281404&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.2759965658187866, &quot;y&quot;: -8.802425384521484, &quot;IDs&quot;: &quot;ENSG00000281468&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.461065769195557, &quot;y&quot;: -11.143613815307617, &quot;IDs&quot;: &quot;ENSG00000281566&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.825245201587677, &quot;y&quot;: -9.925567626953125, &quot;IDs&quot;: &quot;ENSG00000282206&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7182899713516235, &quot;y&quot;: -8.026456832885742, &quot;IDs&quot;: &quot;ENSG00000282381&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.7619672417640686, &quot;y&quot;: -9.05928897857666, &quot;IDs&quot;: &quot;ENSG00000282851&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.095656633377075, &quot;y&quot;: -9.848653793334961, &quot;IDs&quot;: &quot;ENSG00000282870&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.4714436531066895, &quot;y&quot;: -9.638456344604492, &quot;IDs&quot;: &quot;ENSG00000283355&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.1841349601745605, &quot;y&quot;: -8.698638916015625, &quot;IDs&quot;: &quot;ENSG00000283646&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.272120475769043, &quot;y&quot;: -9.784676551818848, &quot;IDs&quot;: &quot;ENSG00000283674&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.6097002029418945, &quot;y&quot;: -8.154952049255371, &quot;IDs&quot;: &quot;ENSG00000283757&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.7372286319732666, &quot;y&quot;: -8.571091651916504, &quot;IDs&quot;: &quot;ENSG00000283828&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.181546688079834, &quot;y&quot;: -8.867622375488281, &quot;IDs&quot;: &quot;ENSG00000283897&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0460937023162842, &quot;y&quot;: -8.758296012878418, &quot;IDs&quot;: &quot;ENSG00000283930&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3194297552108765, &quot;y&quot;: -10.817862510681152, &quot;IDs&quot;: &quot;ENSG00000283982&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.8852057456970215, &quot;y&quot;: -9.070028305053711, &quot;IDs&quot;: &quot;ENSG00000284060&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.4884642362594604, &quot;y&quot;: -11.852931022644043, &quot;IDs&quot;: &quot;ENSG00000284543&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1711097955703735, &quot;y&quot;: -11.399982452392578, &quot;IDs&quot;: &quot;ENSG00000284606&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.482745409011841, &quot;y&quot;: -12.654498100280762, &quot;IDs&quot;: &quot;ENSG00000284634&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.371241569519043, &quot;y&quot;: -9.538043022155762, &quot;IDs&quot;: &quot;ENSG00000284690&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.8556462526321411, &quot;y&quot;: -10.192910194396973, &quot;IDs&quot;: &quot;ENSG00000284719&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.725374460220337, &quot;y&quot;: -11.768755912780762, &quot;IDs&quot;: &quot;ENSG00000285205&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.5392653942108154, &quot;y&quot;: -7.9029541015625, &quot;IDs&quot;: &quot;ENSG00000285571&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.288055896759033, &quot;y&quot;: -9.213794708251953, &quot;IDs&quot;: &quot;ENSG00000285579&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.578969478607178, &quot;y&quot;: -9.115248680114746, &quot;IDs&quot;: &quot;ENSG00000285588&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.81695556640625, &quot;y&quot;: -10.52646541595459, &quot;IDs&quot;: &quot;ENSG00000285644&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.0168262720108032, &quot;y&quot;: -9.519132614135742, &quot;IDs&quot;: &quot;ENSG00000285696&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.6407856941223145, &quot;y&quot;: -11.452577590942383, &quot;IDs&quot;: &quot;ENSG00000285699&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.527526617050171, &quot;y&quot;: -9.184195518493652, &quot;IDs&quot;: &quot;ENSG00000285706&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.3712546825408936, &quot;y&quot;: -11.885611534118652, &quot;IDs&quot;: &quot;ENSG00000285799&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0228116512298584, &quot;y&quot;: -9.393261909484863, &quot;IDs&quot;: &quot;ENSG00000285804&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.0914535522460938, &quot;y&quot;: -9.991349220275879, &quot;IDs&quot;: &quot;ENSG00000285852&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.369950532913208, &quot;y&quot;: -11.054927825927734, &quot;IDs&quot;: &quot;ENSG00000285876&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3254520893096924, &quot;y&quot;: -10.519816398620605, &quot;IDs&quot;: &quot;ENSG00000285886&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.129607677459717, &quot;y&quot;: -12.969247817993164, &quot;IDs&quot;: &quot;ENSG00000083067&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.922377586364746, &quot;y&quot;: -9.872251510620117, &quot;IDs&quot;: &quot;ENSG00000198879&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6304070949554443, &quot;y&quot;: -12.585384368896484, &quot;IDs&quot;: &quot;ENSG00000256083&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -1.8839837312698364, &quot;y&quot;: -6.2318243980407715, &quot;IDs&quot;: &quot;ENSG00000026036&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.3460348844528198, &quot;y&quot;: -8.537701606750488, &quot;IDs&quot;: &quot;ENSG00000075826&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.1056149005889893, &quot;y&quot;: -7.232302188873291, &quot;IDs&quot;: &quot;ENSG00000121318&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.013938126154243946, &quot;y&quot;: -6.563925743103027, &quot;IDs&quot;: &quot;ENSG00000132680&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.0022680999245494604, &quot;y&quot;: -6.730265140533447, &quot;IDs&quot;: &quot;ENSG00000143387&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.17606593668460846, &quot;y&quot;: -6.210519790649414, &quot;IDs&quot;: &quot;ENSG00000155980&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.1381763219833374, &quot;y&quot;: -6.58365535736084, &quot;IDs&quot;: &quot;ENSG00000159588&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.3772313594818115, &quot;y&quot;: -8.070945739746094, &quot;IDs&quot;: &quot;ENSG00000166507&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.461846828460693, &quot;y&quot;: -7.8221211433410645, &quot;IDs&quot;: &quot;ENSG00000169682&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.30623066425323486, &quot;y&quot;: -6.182884216308594, &quot;IDs&quot;: &quot;ENSG00000176887&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.06658957153558731, &quot;y&quot;: -9.771818161010742, &quot;IDs&quot;: &quot;ENSG00000178162&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.24132657051086426, &quot;y&quot;: -6.789989471435547, &quot;IDs&quot;: &quot;ENSG00000178385&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.4583115577697754, &quot;y&quot;: -8.401388168334961, &quot;IDs&quot;: &quot;ENSG00000187944&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.076438903808594, &quot;y&quot;: -5.3920698165893555, &quot;IDs&quot;: &quot;ENSG00000188603&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.15939956903457642, &quot;y&quot;: -6.196275234222412, &quot;IDs&quot;: &quot;ENSG00000198786&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.13155701756477356, &quot;y&quot;: -8.02540397644043, &quot;IDs&quot;: &quot;ENSG00000228629&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.32857513427734375, &quot;y&quot;: -9.504631996154785, &quot;IDs&quot;: &quot;ENSG00000231439&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.03521275520324707, &quot;y&quot;: -7.875929355621338, &quot;IDs&quot;: &quot;ENSG00000233327&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.2273540049791336, &quot;y&quot;: -6.068970203399658, &quot;IDs&quot;: &quot;ENSG00000260774&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.41881704330444336, &quot;y&quot;: -6.028958320617676, &quot;IDs&quot;: &quot;ENSG00000261136&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.46699443459510803, &quot;y&quot;: -7.634618759155273, &quot;IDs&quot;: &quot;ENSG00000262766&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.0389406755566597, &quot;y&quot;: -6.373655796051025, &quot;IDs&quot;: &quot;ENSG00000268743&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.4876549243927, &quot;y&quot;: -7.382843971252441, &quot;IDs&quot;: &quot;ENSG00000270580&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 0.28971943259239197, &quot;y&quot;: -7.102657318115234, &quot;IDs&quot;: &quot;ENSG00000271833&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.5319579839706421, &quot;y&quot;: -6.340512752532959, &quot;IDs&quot;: &quot;ENSG00000272071&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -1.8941997289657593, &quot;y&quot;: -5.925820827484131, &quot;IDs&quot;: &quot;ENSG00000272752&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.23958051204681396, &quot;y&quot;: -5.905359268188477, &quot;IDs&quot;: &quot;ENSG00000278133&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -0.35896724462509155, &quot;y&quot;: -6.527437686920166, &quot;IDs&quot;: &quot;ENSG00000279355&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: -1.0907223224639893, &quot;y&quot;: -6.437920093536377, &quot;IDs&quot;: &quot;ENSG00000283709&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1.2155874967575073, &quot;y&quot;: -11.63308334350586, &quot;IDs&quot;: &quot;ENSG00000285589&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.171462059020996, &quot;y&quot;: -6.476657867431641, &quot;IDs&quot;: &quot;ENSG00000009709&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.1978840827941895, &quot;y&quot;: -7.928458213806152, &quot;IDs&quot;: &quot;ENSG00000041515&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.64573860168457, &quot;y&quot;: -7.2435221672058105, &quot;IDs&quot;: &quot;ENSG00000052795&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.6035780906677246, &quot;y&quot;: -7.440542221069336, &quot;IDs&quot;: &quot;ENSG00000091428&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.52008581161499, &quot;y&quot;: -8.028473854064941, &quot;IDs&quot;: &quot;ENSG00000099864&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.243924140930176, &quot;y&quot;: -6.754682540893555, &quot;IDs&quot;: &quot;ENSG00000100246&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.015013694763184, &quot;y&quot;: -7.463672161102295, &quot;IDs&quot;: &quot;ENSG00000100307&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.684540748596191, &quot;y&quot;: -8.489384651184082, &quot;IDs&quot;: &quot;ENSG00000103021&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.238934516906738, &quot;y&quot;: -7.367116451263428, &quot;IDs&quot;: &quot;ENSG00000103479&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.101757049560547, &quot;y&quot;: -7.103929042816162, &quot;IDs&quot;: &quot;ENSG00000106608&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.891234874725342, &quot;y&quot;: -7.6000165939331055, &quot;IDs&quot;: &quot;ENSG00000108861&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.355049133300781, &quot;y&quot;: -7.0333333015441895, &quot;IDs&quot;: &quot;ENSG00000111602&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.28907585144043, &quot;y&quot;: -6.361763954162598, &quot;IDs&quot;: &quot;ENSG00000116198&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.507297992706299, &quot;y&quot;: -5.947369575500488, &quot;IDs&quot;: &quot;ENSG00000124191&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.237795352935791, &quot;y&quot;: -6.6484198570251465, &quot;IDs&quot;: &quot;ENSG00000127328&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.560671329498291, &quot;y&quot;: -7.065730094909668, &quot;IDs&quot;: &quot;ENSG00000127540&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.550709247589111, &quot;y&quot;: -6.308514595031738, &quot;IDs&quot;: &quot;ENSG00000130021&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.3410258293151855, &quot;y&quot;: -8.845243453979492, &quot;IDs&quot;: &quot;ENSG00000135631&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.592207908630371, &quot;y&quot;: -6.761926651000977, &quot;IDs&quot;: &quot;ENSG00000136720&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.389763355255127, &quot;y&quot;: -6.721271991729736, &quot;IDs&quot;: &quot;ENSG00000138193&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.577779293060303, &quot;y&quot;: -7.097153663635254, &quot;IDs&quot;: &quot;ENSG00000139737&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.0459699630737305, &quot;y&quot;: -7.2729058265686035, &quot;IDs&quot;: &quot;ENSG00000141219&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.46750545501709, &quot;y&quot;: -7.7646684646606445, &quot;IDs&quot;: &quot;ENSG00000141576&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.44321870803833, &quot;y&quot;: -5.734651565551758, &quot;IDs&quot;: &quot;ENSG00000144306&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.627829551696777, &quot;y&quot;: -4.367499828338623, &quot;IDs&quot;: &quot;ENSG00000144468&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.57772970199585, &quot;y&quot;: -7.869447708129883, &quot;IDs&quot;: &quot;ENSG00000150275&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.607316017150879, &quot;y&quot;: -7.133346080780029, &quot;IDs&quot;: &quot;ENSG00000151338&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.638607025146484, &quot;y&quot;: -6.649099826812744, &quot;IDs&quot;: &quot;ENSG00000152284&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.035494089126587, &quot;y&quot;: -12.704682350158691, &quot;IDs&quot;: &quot;ENSG00000154545&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.989627838134766, &quot;y&quot;: -9.640175819396973, &quot;IDs&quot;: &quot;ENSG00000160223&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.998354434967041, &quot;y&quot;: -7.246089458465576, &quot;IDs&quot;: &quot;ENSG00000164306&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.062801361083984, &quot;y&quot;: -5.539217948913574, &quot;IDs&quot;: &quot;ENSG00000167600&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.049257755279541, &quot;y&quot;: -7.074060440063477, &quot;IDs&quot;: &quot;ENSG00000167632&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.055337905883789, &quot;y&quot;: -7.9148850440979, &quot;IDs&quot;: &quot;ENSG00000168014&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4.433714389801025, &quot;y&quot;: -9.805312156677246, &quot;IDs&quot;: &quot;ENSG00000168904&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.030539035797119, &quot;y&quot;: -6.5674309730529785, &quot;IDs&quot;: &quot;ENSG00000169570&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.492681980133057, &quot;y&quot;: -7.251091003417969, &quot;IDs&quot;: &quot;ENSG00000169862&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.195555686950684, &quot;y&quot;: -6.515466213226318, &quot;IDs&quot;: &quot;ENSG00000173825&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.594487190246582, &quot;y&quot;: -6.804909706115723, &quot;IDs&quot;: &quot;ENSG00000184441&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.103127956390381, &quot;y&quot;: -7.644905090332031, &quot;IDs&quot;: &quot;ENSG00000186472&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.483469009399414, &quot;y&quot;: -6.49045991897583, &quot;IDs&quot;: &quot;ENSG00000186577&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.893927097320557, &quot;y&quot;: -7.261169910430908, &quot;IDs&quot;: &quot;ENSG00000188559&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.487445831298828, &quot;y&quot;: -7.074785232543945, &quot;IDs&quot;: &quot;ENSG00000196116&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.796985626220703, &quot;y&quot;: -7.365594387054443, &quot;IDs&quot;: &quot;ENSG00000197943&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.387458801269531, &quot;y&quot;: -6.256512641906738, &quot;IDs&quot;: &quot;ENSG00000198780&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.507716178894043, &quot;y&quot;: -7.435089588165283, &quot;IDs&quot;: &quot;ENSG00000203644&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.110006809234619, &quot;y&quot;: -6.5276408195495605, &quot;IDs&quot;: &quot;ENSG00000203965&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.200897216796875, &quot;y&quot;: -7.229388236999512, &quot;IDs&quot;: &quot;ENSG00000214783&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.205241680145264, &quot;y&quot;: -5.129945278167725, &quot;IDs&quot;: &quot;ENSG00000228137&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.2310333251953125, &quot;y&quot;: -5.285999298095703, &quot;IDs&quot;: &quot;ENSG00000232725&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.561964988708496, &quot;y&quot;: -7.188624858856201, &quot;IDs&quot;: &quot;ENSG00000233639&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.770205020904541, &quot;y&quot;: -7.622529029846191, &quot;IDs&quot;: &quot;ENSG00000243660&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.295527458190918, &quot;y&quot;: -5.874972820281982, &quot;IDs&quot;: &quot;ENSG00000254685&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.283848762512207, &quot;y&quot;: -6.280000686645508, &quot;IDs&quot;: &quot;ENSG00000259431&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.451972007751465, &quot;y&quot;: -7.0154709815979, &quot;IDs&quot;: &quot;ENSG00000260053&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2.7807250022888184, &quot;y&quot;: -8.294408798217773, &quot;IDs&quot;: &quot;ENSG00000267696&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5.386742115020752, &quot;y&quot;: -6.645729064941406, &quot;IDs&quot;: &quot;ENSG00000269707&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6.631625175476074, &quot;y&quot;: -7.087162017822266, &quot;IDs&quot;: &quot;ENSG00000273366&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3.3136816024780273, &quot;y&quot;: -7.004508972167969, &quot;IDs&quot;: &quot;ENSG00000274615&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#009eff&quot;, &quot;name&quot;: &quot;cluster_04&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 6.7876176834106445, &quot;y&quot;: -6.276033878326416, &quot;IDs&quot;: &quot;ENSG00000115963&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.879309177398682, &quot;y&quot;: -6.185205936431885, &quot;IDs&quot;: &quot;ENSG00000181029&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.508583068847656, &quot;y&quot;: -4.11702299118042, &quot;IDs&quot;: &quot;ENSG00000234231&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.060413837432861, &quot;y&quot;: -5.944870471954346, &quot;IDs&quot;: &quot;ENSG00000168255&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 1.4022293090820312, &quot;y&quot;: -3.923710823059082, &quot;IDs&quot;: &quot;ENSG00000237706&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 5.457779884338379, &quot;y&quot;: -7.626938819885254, &quot;IDs&quot;: &quot;ENSG00000253582&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.5478627681732178, &quot;y&quot;: -1.7777131795883179, &quot;IDs&quot;: &quot;ENSG00000006327&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.2696290016174316, &quot;y&quot;: -2.0409047603607178, &quot;IDs&quot;: &quot;ENSG00000078269&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.8253660202026367, &quot;y&quot;: -2.0825469493865967, &quot;IDs&quot;: &quot;ENSG00000100065&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.558417797088623, &quot;y&quot;: -1.9151078462600708, &quot;IDs&quot;: &quot;ENSG00000119714&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.563035488128662, &quot;y&quot;: -4.731881141662598, &quot;IDs&quot;: &quot;ENSG00000137819&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.609822988510132, &quot;y&quot;: -1.46787428855896, &quot;IDs&quot;: &quot;ENSG00000151892&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.5385029315948486, &quot;y&quot;: -1.8141002655029297, &quot;IDs&quot;: &quot;ENSG00000156966&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.6311824321746826, &quot;y&quot;: -1.5239590406417847, &quot;IDs&quot;: &quot;ENSG00000171608&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.0769875049591064, &quot;y&quot;: -1.909862756729126, &quot;IDs&quot;: &quot;ENSG00000184270&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.673215389251709, &quot;y&quot;: -1.6496074199676514, &quot;IDs&quot;: &quot;ENSG00000186081&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.295377492904663, &quot;y&quot;: -1.3873482942581177, &quot;IDs&quot;: &quot;ENSG00000198431&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.5921754837036133, &quot;y&quot;: -1.5615781545639038, &quot;IDs&quot;: &quot;ENSG00000254620&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.607452154159546, &quot;y&quot;: -1.416597843170166, &quot;IDs&quot;: &quot;ENSG00000255202&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.6225814819335938, &quot;y&quot;: -1.84024178981781, &quot;IDs&quot;: &quot;ENSG00000261578&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.2891833782196045, &quot;y&quot;: -1.381166934967041, &quot;IDs&quot;: &quot;ENSG00000279675&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 1.293026089668274, &quot;y&quot;: -3.675812244415283, &quot;IDs&quot;: &quot;ENSG00000163463&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.485234260559082, &quot;y&quot;: -7.072877883911133, &quot;IDs&quot;: &quot;ENSG00000166136&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 3.5545196533203125, &quot;y&quot;: -3.6930415630340576, &quot;IDs&quot;: &quot;ENSG00000243789&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.993603706359863, &quot;y&quot;: -5.239760875701904, &quot;IDs&quot;: &quot;ENSG00000261553&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.5149149894714355, &quot;y&quot;: -5.148254871368408, &quot;IDs&quot;: &quot;ENSG00000005194&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 5.777141571044922, &quot;y&quot;: -4.8610334396362305, &quot;IDs&quot;: &quot;ENSG00000013561&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.432257652282715, &quot;y&quot;: -4.540020942687988, &quot;IDs&quot;: &quot;ENSG00000029725&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.412688255310059, &quot;y&quot;: -5.526115894317627, &quot;IDs&quot;: &quot;ENSG00000050820&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.071063041687012, &quot;y&quot;: -6.177433013916016, &quot;IDs&quot;: &quot;ENSG00000063438&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.380753040313721, &quot;y&quot;: -5.052825927734375, &quot;IDs&quot;: &quot;ENSG00000065491&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.0060396194458, &quot;y&quot;: -5.2528157234191895, &quot;IDs&quot;: &quot;ENSG00000075240&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.901136875152588, &quot;y&quot;: -5.457642078399658, &quot;IDs&quot;: &quot;ENSG00000077454&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.508310794830322, &quot;y&quot;: -5.661594390869141, &quot;IDs&quot;: &quot;ENSG00000088387&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.354297637939453, &quot;y&quot;: -4.4025373458862305, &quot;IDs&quot;: &quot;ENSG00000096080&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.202886581420898, &quot;y&quot;: -5.006420612335205, &quot;IDs&quot;: &quot;ENSG00000099814&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.997066020965576, &quot;y&quot;: -5.165551662445068, &quot;IDs&quot;: &quot;ENSG00000099991&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.420943260192871, &quot;y&quot;: -5.001492500305176, &quot;IDs&quot;: &quot;ENSG00000101152&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.058441162109375, &quot;y&quot;: -5.14114236831665, &quot;IDs&quot;: &quot;ENSG00000103047&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.858798027038574, &quot;y&quot;: -3.314542055130005, &quot;IDs&quot;: &quot;ENSG00000106246&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.343287467956543, &quot;y&quot;: -4.927668571472168, &quot;IDs&quot;: &quot;ENSG00000107185&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.244547843933105, &quot;y&quot;: -5.102865695953369, &quot;IDs&quot;: &quot;ENSG00000107719&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.142487525939941, &quot;y&quot;: -4.343447208404541, &quot;IDs&quot;: &quot;ENSG00000111450&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.35571575164795, &quot;y&quot;: -5.107415199279785, &quot;IDs&quot;: &quot;ENSG00000119408&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.393289089202881, &quot;y&quot;: -6.652668476104736, &quot;IDs&quot;: &quot;ENSG00000121413&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.692265033721924, &quot;y&quot;: -7.516315937042236, &quot;IDs&quot;: &quot;ENSG00000125246&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.641111850738525, &quot;y&quot;: -5.038983345031738, &quot;IDs&quot;: &quot;ENSG00000127554&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.625187873840332, &quot;y&quot;: -4.5717267990112305, &quot;IDs&quot;: &quot;ENSG00000128283&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.462429523468018, &quot;y&quot;: -5.288946628570557, &quot;IDs&quot;: &quot;ENSG00000130758&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.252197265625, &quot;y&quot;: -4.925667762756348, &quot;IDs&quot;: &quot;ENSG00000133243&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.610589504241943, &quot;y&quot;: -5.736486911773682, &quot;IDs&quot;: &quot;ENSG00000134278&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.355332374572754, &quot;y&quot;: -5.522683143615723, &quot;IDs&quot;: &quot;ENSG00000134909&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.710677623748779, &quot;y&quot;: -5.207931995391846, &quot;IDs&quot;: &quot;ENSG00000135905&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.931498050689697, &quot;y&quot;: -5.3257646560668945, &quot;IDs&quot;: &quot;ENSG00000136205&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 5.823808193206787, &quot;y&quot;: -5.062684059143066, &quot;IDs&quot;: &quot;ENSG00000138073&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.9715070724487305, &quot;y&quot;: -5.603725433349609, &quot;IDs&quot;: &quot;ENSG00000138190&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.266232490539551, &quot;y&quot;: -5.610358715057373, &quot;IDs&quot;: &quot;ENSG00000139428&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.30772590637207, &quot;y&quot;: -4.342789173126221, &quot;IDs&quot;: &quot;ENSG00000140015&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.439778804779053, &quot;y&quot;: -5.7936272621154785, &quot;IDs&quot;: &quot;ENSG00000140931&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.630898952484131, &quot;y&quot;: -5.435662746429443, &quot;IDs&quot;: &quot;ENSG00000144711&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.404404640197754, &quot;y&quot;: -5.410056114196777, &quot;IDs&quot;: &quot;ENSG00000145287&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.56521224975586, &quot;y&quot;: -4.629459857940674, &quot;IDs&quot;: &quot;ENSG00000145934&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.465910911560059, &quot;y&quot;: -5.651472091674805, &quot;IDs&quot;: &quot;ENSG00000146555&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.502363204956055, &quot;y&quot;: -5.028747081756592, &quot;IDs&quot;: &quot;ENSG00000146950&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.888622283935547, &quot;y&quot;: -5.137210845947266, &quot;IDs&quot;: &quot;ENSG00000151651&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.784313678741455, &quot;y&quot;: -6.102587699890137, &quot;IDs&quot;: &quot;ENSG00000153832&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.178390026092529, &quot;y&quot;: -5.865586280822754, &quot;IDs&quot;: &quot;ENSG00000154359&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.432806491851807, &quot;y&quot;: -5.692706108093262, &quot;IDs&quot;: &quot;ENSG00000160360&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.211511611938477, &quot;y&quot;: -5.2952094078063965, &quot;IDs&quot;: &quot;ENSG00000160813&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.323439121246338, &quot;y&quot;: -5.115222930908203, &quot;IDs&quot;: &quot;ENSG00000162337&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.281915187835693, &quot;y&quot;: -5.8053879737854, &quot;IDs&quot;: &quot;ENSG00000162374&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.452138900756836, &quot;y&quot;: -3.7502505779266357, &quot;IDs&quot;: &quot;ENSG00000163283&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.502946853637695, &quot;y&quot;: -4.609880447387695, &quot;IDs&quot;: &quot;ENSG00000163602&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.540477275848389, &quot;y&quot;: -5.387040615081787, &quot;IDs&quot;: &quot;ENSG00000165757&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.527121067047119, &quot;y&quot;: -5.016689777374268, &quot;IDs&quot;: &quot;ENSG00000166073&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.221997261047363, &quot;y&quot;: -5.192761421203613, &quot;IDs&quot;: &quot;ENSG00000167264&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.475212097167969, &quot;y&quot;: -4.331076145172119, &quot;IDs&quot;: &quot;ENSG00000169169&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.300362586975098, &quot;y&quot;: -4.841455936431885, &quot;IDs&quot;: &quot;ENSG00000170525&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.811454772949219, &quot;y&quot;: -4.837762832641602, &quot;IDs&quot;: &quot;ENSG00000172086&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.8463752269744873, &quot;y&quot;: -2.175177574157715, &quot;IDs&quot;: &quot;ENSG00000173020&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.673481941223145, &quot;y&quot;: -4.837294101715088, &quot;IDs&quot;: &quot;ENSG00000175267&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.474862098693848, &quot;y&quot;: -4.768773078918457, &quot;IDs&quot;: &quot;ENSG00000176108&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.532818794250488, &quot;y&quot;: -6.110541343688965, &quot;IDs&quot;: &quot;ENSG00000176490&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 5.909008026123047, &quot;y&quot;: -5.501035690307617, &quot;IDs&quot;: &quot;ENSG00000176533&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.22301721572876, &quot;y&quot;: -5.822284698486328, &quot;IDs&quot;: &quot;ENSG00000177291&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.631263732910156, &quot;y&quot;: -5.869546413421631, &quot;IDs&quot;: &quot;ENSG00000177679&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.353417873382568, &quot;y&quot;: -5.752083778381348, &quot;IDs&quot;: &quot;ENSG00000179627&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.395456314086914, &quot;y&quot;: -6.583065986633301, &quot;IDs&quot;: &quot;ENSG00000181031&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.602344989776611, &quot;y&quot;: -6.060512542724609, &quot;IDs&quot;: &quot;ENSG00000183018&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.137784957885742, &quot;y&quot;: -5.124667644500732, &quot;IDs&quot;: &quot;ENSG00000183458&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.483654499053955, &quot;y&quot;: -4.978674411773682, &quot;IDs&quot;: &quot;ENSG00000184923&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.9038825035095215, &quot;y&quot;: -5.125494480133057, &quot;IDs&quot;: &quot;ENSG00000185453&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.475212574005127, &quot;y&quot;: -5.987692356109619, &quot;IDs&quot;: &quot;ENSG00000186918&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.8653435707092285, &quot;y&quot;: -5.3228607177734375, &quot;IDs&quot;: &quot;ENSG00000187672&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.951432704925537, &quot;y&quot;: -5.479117393493652, &quot;IDs&quot;: &quot;ENSG00000189350&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.372500896453857, &quot;y&quot;: -5.697041988372803, &quot;IDs&quot;: &quot;ENSG00000196372&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.145626068115234, &quot;y&quot;: -4.478701591491699, &quot;IDs&quot;: &quot;ENSG00000196526&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.394152641296387, &quot;y&quot;: -5.131566047668457, &quot;IDs&quot;: &quot;ENSG00000196557&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 5.340164661407471, &quot;y&quot;: -5.989650249481201, &quot;IDs&quot;: &quot;ENSG00000198860&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.18442964553833, &quot;y&quot;: -3.4125425815582275, &quot;IDs&quot;: &quot;ENSG00000205476&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.318219184875488, &quot;y&quot;: -5.106128215789795, &quot;IDs&quot;: &quot;ENSG00000206418&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.124945640563965, &quot;y&quot;: -3.858367681503296, &quot;IDs&quot;: &quot;ENSG00000206535&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.294034957885742, &quot;y&quot;: -4.724551200866699, &quot;IDs&quot;: &quot;ENSG00000213390&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.2897725105285645, &quot;y&quot;: -3.9497876167297363, &quot;IDs&quot;: &quot;ENSG00000223768&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.974171161651611, &quot;y&quot;: -4.043391227722168, &quot;IDs&quot;: &quot;ENSG00000224886&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 2.590834617614746, &quot;y&quot;: -1.5516656637191772, &quot;IDs&quot;: &quot;ENSG00000229619&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.420525074005127, &quot;y&quot;: -3.893986701965332, &quot;IDs&quot;: &quot;ENSG00000230309&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.843751907348633, &quot;y&quot;: -6.640937805175781, &quot;IDs&quot;: &quot;ENSG00000232328&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.294908046722412, &quot;y&quot;: -3.645437002182007, &quot;IDs&quot;: &quot;ENSG00000235173&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.765497207641602, &quot;y&quot;: -5.198328018188477, &quot;IDs&quot;: &quot;ENSG00000237212&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.251540184020996, &quot;y&quot;: -5.762949466705322, &quot;IDs&quot;: &quot;ENSG00000238243&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.460621356964111, &quot;y&quot;: -4.892373561859131, &quot;IDs&quot;: &quot;ENSG00000242021&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.449880599975586, &quot;y&quot;: -5.280184745788574, &quot;IDs&quot;: &quot;ENSG00000246763&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.173813819885254, &quot;y&quot;: -5.2233805656433105, &quot;IDs&quot;: &quot;ENSG00000249685&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.607027053833008, &quot;y&quot;: -5.639066696166992, &quot;IDs&quot;: &quot;ENSG00000251595&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.660952568054199, &quot;y&quot;: -5.183798789978027, &quot;IDs&quot;: &quot;ENSG00000251602&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 9.080289840698242, &quot;y&quot;: -4.174299240112305, &quot;IDs&quot;: &quot;ENSG00000254602&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.023773193359375, &quot;y&quot;: -5.204632759094238, &quot;IDs&quot;: &quot;ENSG00000255441&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.480407238006592, &quot;y&quot;: -5.080405235290527, &quot;IDs&quot;: &quot;ENSG00000255495&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.871191024780273, &quot;y&quot;: -4.827722072601318, &quot;IDs&quot;: &quot;ENSG00000256151&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.7269158363342285, &quot;y&quot;: -4.956051826477051, &quot;IDs&quot;: &quot;ENSG00000256152&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.44659423828125, &quot;y&quot;: -5.029086112976074, &quot;IDs&quot;: &quot;ENSG00000257496&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.331299304962158, &quot;y&quot;: -5.856600761413574, &quot;IDs&quot;: &quot;ENSG00000258081&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.835145950317383, &quot;y&quot;: -7.078028202056885, &quot;IDs&quot;: &quot;ENSG00000259498&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.208658695220947, &quot;y&quot;: -6.181421279907227, &quot;IDs&quot;: &quot;ENSG00000259940&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.938652038574219, &quot;y&quot;: -3.496446132659912, &quot;IDs&quot;: &quot;ENSG00000259952&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.9979634284973145, &quot;y&quot;: -4.992892742156982, &quot;IDs&quot;: &quot;ENSG00000262585&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.206579208374023, &quot;y&quot;: -6.027278900146484, &quot;IDs&quot;: &quot;ENSG00000262884&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 5.748600482940674, &quot;y&quot;: -5.25855827331543, &quot;IDs&quot;: &quot;ENSG00000263155&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.933667182922363, &quot;y&quot;: -5.089874267578125, &quot;IDs&quot;: &quot;ENSG00000265728&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.087345600128174, &quot;y&quot;: -4.062058925628662, &quot;IDs&quot;: &quot;ENSG00000267799&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.652787685394287, &quot;y&quot;: -6.260782718658447, &quot;IDs&quot;: &quot;ENSG00000273027&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 7.979372501373291, &quot;y&quot;: -3.9808619022369385, &quot;IDs&quot;: &quot;ENSG00000276931&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 6.743819236755371, &quot;y&quot;: -6.01416015625, &quot;IDs&quot;: &quot;ENSG00000278390&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 8.097416877746582, &quot;y&quot;: -5.158361911773682, &quot;IDs&quot;: &quot;ENSG00000280002&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#3700ff&quot;, &quot;name&quot;: &quot;cluster_05&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 8.198871612548828, &quot;y&quot;: -3.049083709716797, &quot;IDs&quot;: &quot;ENSG00000006837&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.925304412841797, &quot;y&quot;: -3.5646960735321045, &quot;IDs&quot;: &quot;ENSG00000115738&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.390897750854492, &quot;y&quot;: -2.398869276046753, &quot;IDs&quot;: &quot;ENSG00000140543&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.95247220993042, &quot;y&quot;: -2.733128786087036, &quot;IDs&quot;: &quot;ENSG00000140905&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.847476959228516, &quot;y&quot;: -2.208394765853882, &quot;IDs&quot;: &quot;ENSG00000161960&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.497987270355225, &quot;y&quot;: -3.183114767074585, &quot;IDs&quot;: &quot;ENSG00000178127&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.452449321746826, &quot;y&quot;: -3.1090030670166016, &quot;IDs&quot;: &quot;ENSG00000182196&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.854246139526367, &quot;y&quot;: -3.293724298477173, &quot;IDs&quot;: &quot;ENSG00000205534&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: -5.106382369995117, &quot;y&quot;: 3.330319404602051, &quot;IDs&quot;: &quot;ENSG00000225330&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.833686828613281, &quot;y&quot;: -3.5548996925354004, &quot;IDs&quot;: &quot;ENSG00000226981&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.801276683807373, &quot;y&quot;: -2.2675132751464844, &quot;IDs&quot;: &quot;ENSG00000240770&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.537156105041504, &quot;y&quot;: -2.890366792678833, &quot;IDs&quot;: &quot;ENSG00000242616&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.292713642120361, &quot;y&quot;: -3.3312461376190186, &quot;IDs&quot;: &quot;ENSG00000243678&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: -5.093209266662598, &quot;y&quot;: 3.4408669471740723, &quot;IDs&quot;: &quot;ENSG00000267009&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.006099700927734, &quot;y&quot;: -4.489539623260498, &quot;IDs&quot;: &quot;ENSG00000267216&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.638957977294922, &quot;y&quot;: -1.9638701677322388, &quot;IDs&quot;: &quot;ENSG00000275895&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.649358749389648, &quot;y&quot;: -1.8740077018737793, &quot;IDs&quot;: &quot;ENSG00000280987&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.2680134773254395, &quot;y&quot;: -2.0167040824890137, &quot;IDs&quot;: &quot;ENSG00000285053&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.04931116104126, &quot;y&quot;: -2.2958366870880127, &quot;IDs&quot;: &quot;ENSG00000285793&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.721916675567627, &quot;y&quot;: -5.576462268829346, &quot;IDs&quot;: &quot;ENSG00000061455&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.325364589691162, &quot;y&quot;: -7.194394111633301, &quot;IDs&quot;: &quot;ENSG00000082556&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.884356498718262, &quot;y&quot;: -6.390998840332031, &quot;IDs&quot;: &quot;ENSG00000088756&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.041193008422852, &quot;y&quot;: -9.798583030700684, &quot;IDs&quot;: &quot;ENSG00000102796&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.297726154327393, &quot;y&quot;: -7.477144718170166, &quot;IDs&quot;: &quot;ENSG00000103160&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.8070597648620605, &quot;y&quot;: -6.536332130432129, &quot;IDs&quot;: &quot;ENSG00000111886&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.53327751159668, &quot;y&quot;: -6.433783054351807, &quot;IDs&quot;: &quot;ENSG00000116205&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.6909260749816895, &quot;y&quot;: -5.528217792510986, &quot;IDs&quot;: &quot;ENSG00000116213&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 3.6038107872009277, &quot;y&quot;: -7.325600624084473, &quot;IDs&quot;: &quot;ENSG00000120832&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.946005821228027, &quot;y&quot;: -2.4189634323120117, &quot;IDs&quot;: &quot;ENSG00000124593&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.345077037811279, &quot;y&quot;: -5.516108989715576, &quot;IDs&quot;: &quot;ENSG00000139531&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.762519836425781, &quot;y&quot;: -7.079813480377197, &quot;IDs&quot;: &quot;ENSG00000140835&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.856513977050781, &quot;y&quot;: -6.846052646636963, &quot;IDs&quot;: &quot;ENSG00000152061&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.328836917877197, &quot;y&quot;: -12.57253646850586, &quot;IDs&quot;: &quot;ENSG00000154080&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.50107479095459, &quot;y&quot;: -6.84868860244751, &quot;IDs&quot;: &quot;ENSG00000155330&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.508731842041016, &quot;y&quot;: -7.174710750579834, &quot;IDs&quot;: &quot;ENSG00000157978&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.371330261230469, &quot;y&quot;: -7.447632789611816, &quot;IDs&quot;: &quot;ENSG00000158079&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.056240081787109, &quot;y&quot;: -7.025702476501465, &quot;IDs&quot;: &quot;ENSG00000168959&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.163841724395752, &quot;y&quot;: -6.7578020095825195, &quot;IDs&quot;: &quot;ENSG00000168970&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.533664703369141, &quot;y&quot;: -7.525601863861084, &quot;IDs&quot;: &quot;ENSG00000169871&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.283488750457764, &quot;y&quot;: -7.106509208679199, &quot;IDs&quot;: &quot;ENSG00000170456&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.207135200500488, &quot;y&quot;: -12.881074905395508, &quot;IDs&quot;: &quot;ENSG00000176826&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.12376594543457, &quot;y&quot;: -6.993865013122559, &quot;IDs&quot;: &quot;ENSG00000180347&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.2376909255981445, &quot;y&quot;: -7.506580829620361, &quot;IDs&quot;: &quot;ENSG00000186369&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.278092861175537, &quot;y&quot;: -3.71138596534729, &quot;IDs&quot;: &quot;ENSG00000189166&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 3.914217233657837, &quot;y&quot;: -7.290081024169922, &quot;IDs&quot;: &quot;ENSG00000197550&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.962722301483154, &quot;y&quot;: -6.915806293487549, &quot;IDs&quot;: &quot;ENSG00000198960&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.3152570724487305, &quot;y&quot;: -11.098613739013672, &quot;IDs&quot;: &quot;ENSG00000205683&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.0647101402282715, &quot;y&quot;: -6.988080978393555, &quot;IDs&quot;: &quot;ENSG00000239213&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.567507266998291, &quot;y&quot;: -6.913365364074707, &quot;IDs&quot;: &quot;ENSG00000244187&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.498292922973633, &quot;y&quot;: -5.449862480163574, &quot;IDs&quot;: &quot;ENSG00000245662&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.323734760284424, &quot;y&quot;: -4.185290336608887, &quot;IDs&quot;: &quot;ENSG00000263006&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.908291816711426, &quot;y&quot;: -5.585122585296631, &quot;IDs&quot;: &quot;ENSG00000270533&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.9950852394104, &quot;y&quot;: -5.253887176513672, &quot;IDs&quot;: &quot;ENSG00000273654&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.705153465270996, &quot;y&quot;: -6.646963596343994, &quot;IDs&quot;: &quot;ENSG00000279821&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 2.762535810470581, &quot;y&quot;: -4.373279094696045, &quot;IDs&quot;: &quot;ENSG00000100060&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 1.7310463190078735, &quot;y&quot;: -3.5864951610565186, &quot;IDs&quot;: &quot;ENSG00000106078&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 2.1729352474212646, &quot;y&quot;: -4.610542297363281, &quot;IDs&quot;: &quot;ENSG00000107954&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: -3.205953359603882, &quot;y&quot;: -5.349878787994385, &quot;IDs&quot;: &quot;ENSG00000100890&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.743002891540527, &quot;y&quot;: -2.4424235820770264, &quot;IDs&quot;: &quot;ENSG00000106588&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.2847442626953125, &quot;y&quot;: -3.3971989154815674, &quot;IDs&quot;: &quot;ENSG00000124614&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.463591575622559, &quot;y&quot;: -4.075636386871338, &quot;IDs&quot;: &quot;ENSG00000177410&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.821998119354248, &quot;y&quot;: -2.4846060276031494, &quot;IDs&quot;: &quot;ENSG00000198563&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.195953369140625, &quot;y&quot;: -5.670014381408691, &quot;IDs&quot;: &quot;ENSG00000198838&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.259635925292969, &quot;y&quot;: -5.643874645233154, &quot;IDs&quot;: &quot;ENSG00000205560&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.099582672119141, &quot;y&quot;: -2.8644700050354004, &quot;IDs&quot;: &quot;ENSG00000241343&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.465250492095947, &quot;y&quot;: -4.816623210906982, &quot;IDs&quot;: &quot;ENSG00000241370&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.077276229858398, &quot;y&quot;: -4.994105815887451, &quot;IDs&quot;: &quot;ENSG00000260375&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.717350006103516, &quot;y&quot;: -2.9053587913513184, &quot;IDs&quot;: &quot;ENSG00000264343&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: -3.886600971221924, &quot;y&quot;: -2.966689348220825, &quot;IDs&quot;: &quot;ENSG00000266967&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.242374420166016, &quot;y&quot;: -3.1687068939208984, &quot;IDs&quot;: &quot;ENSG00000269858&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.640889167785645, &quot;y&quot;: -2.4679951667785645, &quot;IDs&quot;: &quot;ENSG00000273899&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.531431674957275, &quot;y&quot;: -2.338247537612915, &quot;IDs&quot;: &quot;ENSG00000284879&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.144525527954102, &quot;y&quot;: -5.369499206542969, &quot;IDs&quot;: &quot;ENSG00000004766&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.112403869628906, &quot;y&quot;: -2.6003479957580566, &quot;IDs&quot;: &quot;ENSG00000004809&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.676801681518555, &quot;y&quot;: -3.1431376934051514, &quot;IDs&quot;: &quot;ENSG00000004897&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.064239025115967, &quot;y&quot;: -5.237873554229736, &quot;IDs&quot;: &quot;ENSG00000004975&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.339210510253906, &quot;y&quot;: -4.390998363494873, &quot;IDs&quot;: &quot;ENSG00000005102&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.59481430053711, &quot;y&quot;: -2.1907620429992676, &quot;IDs&quot;: &quot;ENSG00000005339&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.810670852661133, &quot;y&quot;: -3.1431937217712402, &quot;IDs&quot;: &quot;ENSG00000005882&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.791253089904785, &quot;y&quot;: -2.615138292312622, &quot;IDs&quot;: &quot;ENSG00000006634&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.46282958984375, &quot;y&quot;: -3.456212043762207, &quot;IDs&quot;: &quot;ENSG00000006704&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.497932434082031, &quot;y&quot;: -4.0208892822265625, &quot;IDs&quot;: &quot;ENSG00000007923&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.850255012512207, &quot;y&quot;: -6.393060684204102, &quot;IDs&quot;: &quot;ENSG00000008130&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.488852500915527, &quot;y&quot;: -4.718547344207764, &quot;IDs&quot;: &quot;ENSG00000008256&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.570443153381348, &quot;y&quot;: -2.9816880226135254, &quot;IDs&quot;: &quot;ENSG00000010292&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.168102741241455, &quot;y&quot;: -3.9498536586761475, &quot;IDs&quot;: &quot;ENSG00000010803&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.924635887145996, &quot;y&quot;: -4.889960765838623, &quot;IDs&quot;: &quot;ENSG00000013810&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.898882865905762, &quot;y&quot;: -3.279749870300293, &quot;IDs&quot;: &quot;ENSG00000014164&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.146950721740723, &quot;y&quot;: -2.0730159282684326, &quot;IDs&quot;: &quot;ENSG00000015171&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.980164051055908, &quot;y&quot;: -3.6608285903930664, &quot;IDs&quot;: &quot;ENSG00000019995&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.868825912475586, &quot;y&quot;: -2.1736536026000977, &quot;IDs&quot;: &quot;ENSG00000020426&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.819395542144775, &quot;y&quot;: -4.887749195098877, &quot;IDs&quot;: &quot;ENSG00000020577&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.590120792388916, &quot;y&quot;: -5.62847375869751, &quot;IDs&quot;: &quot;ENSG00000021762&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.102812767028809, &quot;y&quot;: -4.223097801208496, &quot;IDs&quot;: &quot;ENSG00000024526&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.457308769226074, &quot;y&quot;: -5.2522454261779785, &quot;IDs&quot;: &quot;ENSG00000025293&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.9763665199279785, &quot;y&quot;: -1.8092836141586304, &quot;IDs&quot;: &quot;ENSG00000029993&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.620128631591797, &quot;y&quot;: -2.745929002761841, &quot;IDs&quot;: &quot;ENSG00000031823&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.3712310791015625, &quot;y&quot;: -5.362874984741211, &quot;IDs&quot;: &quot;ENSG00000033170&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.933747291564941, &quot;y&quot;: -6.432244300842285, &quot;IDs&quot;: &quot;ENSG00000034053&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.676605224609375, &quot;y&quot;: -2.8262546062469482, &quot;IDs&quot;: &quot;ENSG00000035499&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.976073265075684, &quot;y&quot;: -4.541193962097168, &quot;IDs&quot;: &quot;ENSG00000035687&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.3388671875, &quot;y&quot;: -2.716493844985962, &quot;IDs&quot;: &quot;ENSG00000035928&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.90329647064209, &quot;y&quot;: -2.15804123878479, &quot;IDs&quot;: &quot;ENSG00000036549&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.942486763000488, &quot;y&quot;: -3.0516176223754883, &quot;IDs&quot;: &quot;ENSG00000038382&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.638655662536621, &quot;y&quot;: -4.7712225914001465, &quot;IDs&quot;: &quot;ENSG00000039523&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.541289329528809, &quot;y&quot;: -4.529819965362549, &quot;IDs&quot;: &quot;ENSG00000040275&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.782679557800293, &quot;y&quot;: -2.6661465167999268, &quot;IDs&quot;: &quot;ENSG00000041988&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.744884967803955, &quot;y&quot;: -2.7437918186187744, &quot;IDs&quot;: &quot;ENSG00000042088&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.27660083770752, &quot;y&quot;: -3.7551217079162598, &quot;IDs&quot;: &quot;ENSG00000047662&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.001713752746582, &quot;y&quot;: -2.7250113487243652, &quot;IDs&quot;: &quot;ENSG00000047849&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.7166428565979, &quot;y&quot;: -5.584282398223877, &quot;IDs&quot;: &quot;ENSG00000048471&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.9040207862854, &quot;y&quot;: -2.858164072036743, &quot;IDs&quot;: &quot;ENSG00000048991&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.003873825073242, &quot;y&quot;: -4.720162391662598, &quot;IDs&quot;: &quot;ENSG00000049618&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.364552974700928, &quot;y&quot;: -4.070225238800049, &quot;IDs&quot;: &quot;ENSG00000051382&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.517239570617676, &quot;y&quot;: -5.8991899490356445, &quot;IDs&quot;: &quot;ENSG00000053254&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.797494888305664, &quot;y&quot;: -3.3983185291290283, &quot;IDs&quot;: &quot;ENSG00000054611&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.245397567749023, &quot;y&quot;: -3.9923105239868164, &quot;IDs&quot;: &quot;ENSG00000054965&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.033933639526367, &quot;y&quot;: -2.2470479011535645, &quot;IDs&quot;: &quot;ENSG00000055130&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.295766353607178, &quot;y&quot;: -3.291142702102661, &quot;IDs&quot;: &quot;ENSG00000055147&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.064208984375, &quot;y&quot;: -2.281451940536499, &quot;IDs&quot;: &quot;ENSG00000055917&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.537250518798828, &quot;y&quot;: -6.476417541503906, &quot;IDs&quot;: &quot;ENSG00000056998&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.8809919357299805, &quot;y&quot;: -3.8182125091552734, &quot;IDs&quot;: &quot;ENSG00000058056&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.216100692749023, &quot;y&quot;: -4.564525127410889, &quot;IDs&quot;: &quot;ENSG00000058091&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.988443851470947, &quot;y&quot;: -2.256779909133911, &quot;IDs&quot;: &quot;ENSG00000058600&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.90654182434082, &quot;y&quot;: -6.198516368865967, &quot;IDs&quot;: &quot;ENSG00000058866&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.365221977233887, &quot;y&quot;: -2.3692307472229004, &quot;IDs&quot;: &quot;ENSG00000060069&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.998761177062988, &quot;y&quot;: -2.807298183441162, &quot;IDs&quot;: &quot;ENSG00000060339&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.20724105834961, &quot;y&quot;: -4.284563064575195, &quot;IDs&quot;: &quot;ENSG00000061273&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.762947082519531, &quot;y&quot;: -2.2250566482543945, &quot;IDs&quot;: &quot;ENSG00000061936&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.201133728027344, &quot;y&quot;: -4.903743743896484, &quot;IDs&quot;: &quot;ENSG00000063601&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.886364936828613, &quot;y&quot;: -3.2010509967803955, &quot;IDs&quot;: &quot;ENSG00000064393&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.1573944091796875, &quot;y&quot;: -4.571663856506348, &quot;IDs&quot;: &quot;ENSG00000064652&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.215235710144043, &quot;y&quot;: -2.3232710361480713, &quot;IDs&quot;: &quot;ENSG00000064961&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.77214527130127, &quot;y&quot;: -2.2938270568847656, &quot;IDs&quot;: &quot;ENSG00000065000&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.436491966247559, &quot;y&quot;: -2.975252151489258, &quot;IDs&quot;: &quot;ENSG00000065559&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.599399089813232, &quot;y&quot;: -6.344010353088379, &quot;IDs&quot;: &quot;ENSG00000065675&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.990686893463135, &quot;y&quot;: -6.368064880371094, &quot;IDs&quot;: &quot;ENSG00000065717&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.661688327789307, &quot;y&quot;: -5.171580791473389, &quot;IDs&quot;: &quot;ENSG00000065882&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.01693344116211, &quot;y&quot;: -2.402913808822632, &quot;IDs&quot;: &quot;ENSG00000066117&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.721240997314453, &quot;y&quot;: -3.6337482929229736, &quot;IDs&quot;: &quot;ENSG00000066557&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.480487823486328, &quot;y&quot;: -4.8024468421936035, &quot;IDs&quot;: &quot;ENSG00000067606&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.9698896408081055, &quot;y&quot;: -2.6084821224212646, &quot;IDs&quot;: &quot;ENSG00000068383&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.812911033630371, &quot;y&quot;: -2.0641958713531494, &quot;IDs&quot;: &quot;ENSG00000068489&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.554793357849121, &quot;y&quot;: -2.593172073364258, &quot;IDs&quot;: &quot;ENSG00000069275&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.63680362701416, &quot;y&quot;: -2.613044023513794, &quot;IDs&quot;: &quot;ENSG00000069956&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.856148719787598, &quot;y&quot;: -5.617485046386719, &quot;IDs&quot;: &quot;ENSG00000070778&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.124605655670166, &quot;y&quot;: -3.301939010620117, &quot;IDs&quot;: &quot;ENSG00000071205&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.765817642211914, &quot;y&quot;: -2.3492016792297363, &quot;IDs&quot;: &quot;ENSG00000071243&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.961638450622559, &quot;y&quot;: -2.958397388458252, &quot;IDs&quot;: &quot;ENSG00000072415&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.83790111541748, &quot;y&quot;: -3.3037283420562744, &quot;IDs&quot;: &quot;ENSG00000072571&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.905826568603516, &quot;y&quot;: -2.798489570617676, &quot;IDs&quot;: &quot;ENSG00000072864&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.0026373863220215, &quot;y&quot;: -4.530853271484375, &quot;IDs&quot;: &quot;ENSG00000073331&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.197362899780273, &quot;y&quot;: -3.2102835178375244, &quot;IDs&quot;: &quot;ENSG00000074211&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.543072700500488, &quot;y&quot;: -4.50485897064209, &quot;IDs&quot;: &quot;ENSG00000074317&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.594358921051025, &quot;y&quot;: -5.758550643920898, &quot;IDs&quot;: &quot;ENSG00000074590&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.176531791687012, &quot;y&quot;: -1.9901676177978516, &quot;IDs&quot;: &quot;ENSG00000075188&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.432136535644531, &quot;y&quot;: -4.45104455947876, &quot;IDs&quot;: &quot;ENSG00000075218&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.069930076599121, &quot;y&quot;: -2.5082991123199463, &quot;IDs&quot;: &quot;ENSG00000075407&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.024008750915527, &quot;y&quot;: -2.468167543411255, &quot;IDs&quot;: &quot;ENSG00000075886&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.451560020446777, &quot;y&quot;: -3.0868000984191895, &quot;IDs&quot;: &quot;ENSG00000076382&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.693057537078857, &quot;y&quot;: -4.630407333374023, &quot;IDs&quot;: &quot;ENSG00000076650&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.3473405838012695, &quot;y&quot;: -4.624171733856201, &quot;IDs&quot;: &quot;ENSG00000076685&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.028421878814697, &quot;y&quot;: -5.216753959655762, &quot;IDs&quot;: &quot;ENSG00000076826&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.120530605316162, &quot;y&quot;: -3.416544198989868, &quot;IDs&quot;: &quot;ENSG00000077713&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.199805736541748, &quot;y&quot;: -3.6829800605773926, &quot;IDs&quot;: &quot;ENSG00000078319&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.622934341430664, &quot;y&quot;: -2.760702133178711, &quot;IDs&quot;: &quot;ENSG00000078403&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.981688499450684, &quot;y&quot;: -3.451606035232544, &quot;IDs&quot;: &quot;ENSG00000078687&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.019328117370605, &quot;y&quot;: -4.683521747589111, &quot;IDs&quot;: &quot;ENSG00000079313&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.660968780517578, &quot;y&quot;: -5.424935817718506, &quot;IDs&quot;: &quot;ENSG00000079432&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.732696533203125, &quot;y&quot;: -2.3782942295074463, &quot;IDs&quot;: &quot;ENSG00000079435&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.84542179107666, &quot;y&quot;: -4.4923834800720215, &quot;IDs&quot;: &quot;ENSG00000080298&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.054567337036133, &quot;y&quot;: -4.756039619445801, &quot;IDs&quot;: &quot;ENSG00000080986&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.097021579742432, &quot;y&quot;: -3.6786160469055176, &quot;IDs&quot;: &quot;ENSG00000081923&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.549786567687988, &quot;y&quot;: -2.182468891143799, &quot;IDs&quot;: &quot;ENSG00000082068&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.684654235839844, &quot;y&quot;: -4.431107997894287, &quot;IDs&quot;: &quot;ENSG00000082497&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.132265090942383, &quot;y&quot;: -4.2775774002075195, &quot;IDs&quot;: &quot;ENSG00000083544&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.5508527755737305, &quot;y&quot;: -5.252819538116455, &quot;IDs&quot;: &quot;ENSG00000084090&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.444894790649414, &quot;y&quot;: -2.4731874465942383, &quot;IDs&quot;: &quot;ENSG00000085231&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.942846298217773, &quot;y&quot;: -4.448757648468018, &quot;IDs&quot;: &quot;ENSG00000085491&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.803650856018066, &quot;y&quot;: -2.34796142578125, &quot;IDs&quot;: &quot;ENSG00000085982&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.600446701049805, &quot;y&quot;: -5.680058479309082, &quot;IDs&quot;: &quot;ENSG00000087077&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.32003402709961, &quot;y&quot;: -4.070817470550537, &quot;IDs&quot;: &quot;ENSG00000087586&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.449649810791016, &quot;y&quot;: -4.696806907653809, &quot;IDs&quot;: &quot;ENSG00000087903&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.503165245056152, &quot;y&quot;: -2.2341158390045166, &quot;IDs&quot;: &quot;ENSG00000088038&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.111395835876465, &quot;y&quot;: -3.3208417892456055, &quot;IDs&quot;: &quot;ENSG00000088325&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.823579788208008, &quot;y&quot;: -4.577301979064941, &quot;IDs&quot;: &quot;ENSG00000088356&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.486048221588135, &quot;y&quot;: -3.38238787651062, &quot;IDs&quot;: &quot;ENSG00000088543&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.3789215087890625, &quot;y&quot;: -3.611769676208496, &quot;IDs&quot;: &quot;ENSG00000088808&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.012219429016113, &quot;y&quot;: -2.9724855422973633, &quot;IDs&quot;: &quot;ENSG00000088986&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.847670555114746, &quot;y&quot;: -6.137603282928467, &quot;IDs&quot;: &quot;ENSG00000089057&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.663147449493408, &quot;y&quot;: -5.491882801055908, &quot;IDs&quot;: &quot;ENSG00000089094&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.953730583190918, &quot;y&quot;: -3.9070935249328613, &quot;IDs&quot;: &quot;ENSG00000089154&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.9291353225708, &quot;y&quot;: -3.8987936973571777, &quot;IDs&quot;: &quot;ENSG00000089685&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.880779266357422, &quot;y&quot;: -6.365656852722168, &quot;IDs&quot;: &quot;ENSG00000089876&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.065679550170898, &quot;y&quot;: -3.938204288482666, &quot;IDs&quot;: &quot;ENSG00000090889&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.466928482055664, &quot;y&quot;: -6.498720645904541, &quot;IDs&quot;: &quot;ENSG00000090932&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.438790321350098, &quot;y&quot;: -2.4583380222320557, &quot;IDs&quot;: &quot;ENSG00000091137&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.588228225708008, &quot;y&quot;: -2.9791481494903564, &quot;IDs&quot;: &quot;ENSG00000091527&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.00975513458252, &quot;y&quot;: -5.227970600128174, &quot;IDs&quot;: &quot;ENSG00000092208&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.732012748718262, &quot;y&quot;: -2.651931047439575, &quot;IDs&quot;: &quot;ENSG00000092820&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.442276954650879, &quot;y&quot;: -4.141498565673828, &quot;IDs&quot;: &quot;ENSG00000092871&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.075140476226807, &quot;y&quot;: -3.8858802318573, &quot;IDs&quot;: &quot;ENSG00000093183&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.401272773742676, &quot;y&quot;: -4.375236511230469, &quot;IDs&quot;: &quot;ENSG00000094631&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.5014567375183105, &quot;y&quot;: -2.4509189128875732, &quot;IDs&quot;: &quot;ENSG00000096872&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.76163387298584, &quot;y&quot;: -5.9780449867248535, &quot;IDs&quot;: &quot;ENSG00000100139&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.464572429656982, &quot;y&quot;: -5.7072601318359375, &quot;IDs&quot;: &quot;ENSG00000100239&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.985358238220215, &quot;y&quot;: -3.17704176902771, &quot;IDs&quot;: &quot;ENSG00000100242&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.540654182434082, &quot;y&quot;: -4.614206790924072, &quot;IDs&quot;: &quot;ENSG00000100304&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.430741310119629, &quot;y&quot;: -5.485584735870361, &quot;IDs&quot;: &quot;ENSG00000100324&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.611474990844727, &quot;y&quot;: -4.06834602355957, &quot;IDs&quot;: &quot;ENSG00000100426&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.720697402954102, &quot;y&quot;: -2.378183364868164, &quot;IDs&quot;: &quot;ENSG00000100575&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.30568790435791, &quot;y&quot;: -2.8378374576568604, &quot;IDs&quot;: &quot;ENSG00000100578&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.363774299621582, &quot;y&quot;: -4.580452919006348, &quot;IDs&quot;: &quot;ENSG00000100629&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.354631423950195, &quot;y&quot;: -3.779548406600952, &quot;IDs&quot;: &quot;ENSG00000101298&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.961662292480469, &quot;y&quot;: -4.186107635498047, &quot;IDs&quot;: &quot;ENSG00000101574&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.077028751373291, &quot;y&quot;: -6.311810493469238, &quot;IDs&quot;: &quot;ENSG00000101577&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.975462436676025, &quot;y&quot;: -3.6402347087860107, &quot;IDs&quot;: &quot;ENSG00000101605&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.449043273925781, &quot;y&quot;: -3.144303321838379, &quot;IDs&quot;: &quot;ENSG00000101871&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.077478408813477, &quot;y&quot;: -5.045361518859863, &quot;IDs&quot;: &quot;ENSG00000101935&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.060138702392578, &quot;y&quot;: -5.10174560546875, &quot;IDs&quot;: &quot;ENSG00000101945&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.5857462882995605, &quot;y&quot;: -5.311059951782227, &quot;IDs&quot;: &quot;ENSG00000102098&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.822604179382324, &quot;y&quot;: -4.766107082366943, &quot;IDs&quot;: &quot;ENSG00000102385&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.857071876525879, &quot;y&quot;: -4.272986888885498, &quot;IDs&quot;: &quot;ENSG00000102543&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.533821105957031, &quot;y&quot;: -3.480595350265503, &quot;IDs&quot;: &quot;ENSG00000102710&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.242246627807617, &quot;y&quot;: -3.0726592540740967, &quot;IDs&quot;: &quot;ENSG00000102974&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.769165992736816, &quot;y&quot;: -4.089181423187256, &quot;IDs&quot;: &quot;ENSG00000103018&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.499690055847168, &quot;y&quot;: -4.761806011199951, &quot;IDs&quot;: &quot;ENSG00000103091&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.532103538513184, &quot;y&quot;: -3.204371452331543, &quot;IDs&quot;: &quot;ENSG00000103126&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.024584770202637, &quot;y&quot;: -3.1284983158111572, &quot;IDs&quot;: &quot;ENSG00000103148&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.213970184326172, &quot;y&quot;: -2.4210588932037354, &quot;IDs&quot;: &quot;ENSG00000103194&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.808394432067871, &quot;y&quot;: -5.359576225280762, &quot;IDs&quot;: &quot;ENSG00000103197&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.3662848472595215, &quot;y&quot;: -5.192438125610352, &quot;IDs&quot;: &quot;ENSG00000103248&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.589449882507324, &quot;y&quot;: -2.0552306175231934, &quot;IDs&quot;: &quot;ENSG00000103356&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.131579399108887, &quot;y&quot;: -2.0884270668029785, &quot;IDs&quot;: &quot;ENSG00000103381&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.868512153625488, &quot;y&quot;: -4.021921157836914, &quot;IDs&quot;: &quot;ENSG00000103460&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.328910827636719, &quot;y&quot;: -4.144567012786865, &quot;IDs&quot;: &quot;ENSG00000103494&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.364808559417725, &quot;y&quot;: -2.408324956893921, &quot;IDs&quot;: &quot;ENSG00000103599&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.309141159057617, &quot;y&quot;: -3.4263219833374023, &quot;IDs&quot;: &quot;ENSG00000103832&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.734044551849365, &quot;y&quot;: -3.271531105041504, &quot;IDs&quot;: &quot;ENSG00000103852&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.583837509155273, &quot;y&quot;: -4.017784118652344, &quot;IDs&quot;: &quot;ENSG00000103932&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.848753452301025, &quot;y&quot;: -3.0855348110198975, &quot;IDs&quot;: &quot;ENSG00000104147&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.040837287902832, &quot;y&quot;: -4.224922180175781, &quot;IDs&quot;: &quot;ENSG00000104177&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.558496475219727, &quot;y&quot;: -2.461090087890625, &quot;IDs&quot;: &quot;ENSG00000104299&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.648188591003418, &quot;y&quot;: -4.835213661193848, &quot;IDs&quot;: &quot;ENSG00000104313&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.354393005371094, &quot;y&quot;: -4.993596076965332, &quot;IDs&quot;: &quot;ENSG00000104375&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.093977451324463, &quot;y&quot;: -4.229853630065918, &quot;IDs&quot;: &quot;ENSG00000104442&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.136590957641602, &quot;y&quot;: -3.1978259086608887, &quot;IDs&quot;: &quot;ENSG00000104679&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.656245231628418, &quot;y&quot;: -2.460649251937866, &quot;IDs&quot;: &quot;ENSG00000104756&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.628597259521484, &quot;y&quot;: -4.3867387771606445, &quot;IDs&quot;: &quot;ENSG00000104859&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.5662260055542, &quot;y&quot;: -5.370682716369629, &quot;IDs&quot;: &quot;ENSG00000104866&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.704816818237305, &quot;y&quot;: -5.468677043914795, &quot;IDs&quot;: &quot;ENSG00000104899&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.846543312072754, &quot;y&quot;: -3.6663994789123535, &quot;IDs&quot;: &quot;ENSG00000105137&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.118330478668213, &quot;y&quot;: -4.521174430847168, &quot;IDs&quot;: &quot;ENSG00000105483&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.8324995040893555, &quot;y&quot;: -6.160266876220703, &quot;IDs&quot;: &quot;ENSG00000105552&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.706974983215332, &quot;y&quot;: -4.828521251678467, &quot;IDs&quot;: &quot;ENSG00000105778&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.092818260192871, &quot;y&quot;: -1.7889788150787354, &quot;IDs&quot;: &quot;ENSG00000105993&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.94981575012207, &quot;y&quot;: -2.626980781555176, &quot;IDs&quot;: &quot;ENSG00000106305&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.283820152282715, &quot;y&quot;: -2.558332920074463, &quot;IDs&quot;: &quot;ENSG00000106443&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.619322776794434, &quot;y&quot;: -5.769885540008545, &quot;IDs&quot;: &quot;ENSG00000106571&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.4213995933532715, &quot;y&quot;: -4.242602825164795, &quot;IDs&quot;: &quot;ENSG00000106829&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.627359867095947, &quot;y&quot;: -6.428723335266113, &quot;IDs&quot;: &quot;ENSG00000107036&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.087283611297607, &quot;y&quot;: -3.6606080532073975, &quot;IDs&quot;: &quot;ENSG00000107263&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.82143497467041, &quot;y&quot;: -5.175721645355225, &quot;IDs&quot;: &quot;ENSG00000107404&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.485947132110596, &quot;y&quot;: -3.1552202701568604, &quot;IDs&quot;: &quot;ENSG00000107625&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.747692584991455, &quot;y&quot;: -4.841668605804443, &quot;IDs&quot;: &quot;ENSG00000107771&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.810153961181641, &quot;y&quot;: -5.325300693511963, &quot;IDs&quot;: &quot;ENSG00000107779&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.861170768737793, &quot;y&quot;: -4.381285667419434, &quot;IDs&quot;: &quot;ENSG00000107863&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.060673713684082, &quot;y&quot;: -3.995521306991577, &quot;IDs&quot;: &quot;ENSG00000107929&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.563580513000488, &quot;y&quot;: -2.4005722999572754, &quot;IDs&quot;: &quot;ENSG00000108106&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.933899879455566, &quot;y&quot;: -4.757311820983887, &quot;IDs&quot;: &quot;ENSG00000108389&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.87298583984375, &quot;y&quot;: -4.6671977043151855, &quot;IDs&quot;: &quot;ENSG00000108798&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.883833408355713, &quot;y&quot;: -5.274710655212402, &quot;IDs&quot;: &quot;ENSG00000108961&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.107305526733398, &quot;y&quot;: -2.7880661487579346, &quot;IDs&quot;: &quot;ENSG00000109685&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.6395583152771, &quot;y&quot;: -5.259550094604492, &quot;IDs&quot;: &quot;ENSG00000109686&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.853513717651367, &quot;y&quot;: -3.2740910053253174, &quot;IDs&quot;: &quot;ENSG00000109927&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.391834259033203, &quot;y&quot;: -4.387636184692383, &quot;IDs&quot;: &quot;ENSG00000109971&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.055010795593262, &quot;y&quot;: -3.8128154277801514, &quot;IDs&quot;: &quot;ENSG00000110090&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.411483764648438, &quot;y&quot;: -2.201524257659912, &quot;IDs&quot;: &quot;ENSG00000110172&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.890469551086426, &quot;y&quot;: -2.94232177734375, &quot;IDs&quot;: &quot;ENSG00000110713&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.470346450805664, &quot;y&quot;: -4.667723655700684, &quot;IDs&quot;: &quot;ENSG00000110844&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.378867149353027, &quot;y&quot;: -5.246514320373535, &quot;IDs&quot;: &quot;ENSG00000110921&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.172689437866211, &quot;y&quot;: -5.6471734046936035, &quot;IDs&quot;: &quot;ENSG00000111186&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.735532760620117, &quot;y&quot;: -2.501549005508423, &quot;IDs&quot;: &quot;ENSG00000111206&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.149775505065918, &quot;y&quot;: -4.66748571395874, &quot;IDs&quot;: &quot;ENSG00000111266&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.579068183898926, &quot;y&quot;: -5.4630513191223145, &quot;IDs&quot;: &quot;ENSG00000111452&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.008460998535156, &quot;y&quot;: -5.136338710784912, &quot;IDs&quot;: &quot;ENSG00000111676&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.766277313232422, &quot;y&quot;: -5.47274923324585, &quot;IDs&quot;: &quot;ENSG00000111911&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.236688613891602, &quot;y&quot;: -2.2490010261535645, &quot;IDs&quot;: &quot;ENSG00000112640&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.882986545562744, &quot;y&quot;: -4.101949214935303, &quot;IDs&quot;: &quot;ENSG00000112685&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.628442764282227, &quot;y&quot;: -2.48346209526062, &quot;IDs&quot;: &quot;ENSG00000112701&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.16765832901001, &quot;y&quot;: -4.569769859313965, &quot;IDs&quot;: &quot;ENSG00000112851&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.71686840057373, &quot;y&quot;: -3.8960518836975098, &quot;IDs&quot;: &quot;ENSG00000112877&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.135540962219238, &quot;y&quot;: -3.179158926010132, &quot;IDs&quot;: &quot;ENSG00000112941&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.971220016479492, &quot;y&quot;: -2.4736297130584717, &quot;IDs&quot;: &quot;ENSG00000112984&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.546454429626465, &quot;y&quot;: -4.130160331726074, &quot;IDs&quot;: &quot;ENSG00000113048&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.782529830932617, &quot;y&quot;: -2.060856580734253, &quot;IDs&quot;: &quot;ENSG00000113368&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.465809345245361, &quot;y&quot;: -2.4202163219451904, &quot;IDs&quot;: &quot;ENSG00000113391&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.542538166046143, &quot;y&quot;: -6.265504360198975, &quot;IDs&quot;: &quot;ENSG00000113504&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.911393165588379, &quot;y&quot;: -2.4192757606506348, &quot;IDs&quot;: &quot;ENSG00000113649&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.048510551452637, &quot;y&quot;: -3.7470703125, &quot;IDs&quot;: &quot;ENSG00000113734&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.587998390197754, &quot;y&quot;: -3.129619598388672, &quot;IDs&quot;: &quot;ENSG00000114346&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.244792938232422, &quot;y&quot;: -2.3021128177642822, &quot;IDs&quot;: &quot;ENSG00000114416&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.461804389953613, &quot;y&quot;: -4.093516826629639, &quot;IDs&quot;: &quot;ENSG00000114904&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.956550598144531, &quot;y&quot;: -5.32682991027832, &quot;IDs&quot;: &quot;ENSG00000114923&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.966255187988281, &quot;y&quot;: -4.804859161376953, &quot;IDs&quot;: &quot;ENSG00000115163&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.25376558303833, &quot;y&quot;: -3.343799352645874, &quot;IDs&quot;: &quot;ENSG00000115363&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.166254997253418, &quot;y&quot;: -3.043987512588501, &quot;IDs&quot;: &quot;ENSG00000115419&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.678563117980957, &quot;y&quot;: -3.3311867713928223, &quot;IDs&quot;: &quot;ENSG00000115504&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.168248176574707, &quot;y&quot;: -4.270708084106445, &quot;IDs&quot;: &quot;ENSG00000115904&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.906559944152832, &quot;y&quot;: -3.571626663208008, &quot;IDs&quot;: &quot;ENSG00000115966&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.11158561706543, &quot;y&quot;: -5.470058917999268, &quot;IDs&quot;: &quot;ENSG00000116044&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.873948574066162, &quot;y&quot;: -7.169624328613281, &quot;IDs&quot;: &quot;ENSG00000116117&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.505634784698486, &quot;y&quot;: -3.2690532207489014, &quot;IDs&quot;: &quot;ENSG00000116212&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.101840019226074, &quot;y&quot;: -5.322305202484131, &quot;IDs&quot;: &quot;ENSG00000116663&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.022387504577637, &quot;y&quot;: -5.259959697723389, &quot;IDs&quot;: &quot;ENSG00000116691&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.875283241271973, &quot;y&quot;: -3.9994335174560547, &quot;IDs&quot;: &quot;ENSG00000116786&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.654849052429199, &quot;y&quot;: -3.219160318374634, &quot;IDs&quot;: &quot;ENSG00000116871&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.789708137512207, &quot;y&quot;: -2.9329633712768555, &quot;IDs&quot;: &quot;ENSG00000116874&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.9168267250061035, &quot;y&quot;: -3.5586631298065186, &quot;IDs&quot;: &quot;ENSG00000116990&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.63880729675293, &quot;y&quot;: -5.477669715881348, &quot;IDs&quot;: &quot;ENSG00000117153&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.500410079956055, &quot;y&quot;: -2.116097927093506, &quot;IDs&quot;: &quot;ENSG00000117399&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.465934753417969, &quot;y&quot;: -4.42496395111084, &quot;IDs&quot;: &quot;ENSG00000117650&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.435131549835205, &quot;y&quot;: -5.100739002227783, &quot;IDs&quot;: &quot;ENSG00000117748&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.866678714752197, &quot;y&quot;: -1.9857808351516724, &quot;IDs&quot;: &quot;ENSG00000118007&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.677504062652588, &quot;y&quot;: -6.360841274261475, &quot;IDs&quot;: &quot;ENSG00000118194&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.172004699707031, &quot;y&quot;: -3.9663050174713135, &quot;IDs&quot;: &quot;ENSG00000118307&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.92546558380127, &quot;y&quot;: -5.274303913116455, &quot;IDs&quot;: &quot;ENSG00000118557&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.597776412963867, &quot;y&quot;: -2.8659379482269287, &quot;IDs&quot;: &quot;ENSG00000118894&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.546546936035156, &quot;y&quot;: -3.8814942836761475, &quot;IDs&quot;: &quot;ENSG00000118961&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.685403823852539, &quot;y&quot;: -3.24703049659729, &quot;IDs&quot;: &quot;ENSG00000119397&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.12191390991211, &quot;y&quot;: -4.316176414489746, &quot;IDs&quot;: &quot;ENSG00000119403&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.58169412612915, &quot;y&quot;: -5.232350826263428, &quot;IDs&quot;: &quot;ENSG00000119509&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.069869041442871, &quot;y&quot;: -4.275103569030762, &quot;IDs&quot;: &quot;ENSG00000119715&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.307204246520996, &quot;y&quot;: -2.379171371459961, &quot;IDs&quot;: &quot;ENSG00000119844&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.747148036956787, &quot;y&quot;: -5.94740629196167, &quot;IDs&quot;: &quot;ENSG00000119862&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.333882331848145, &quot;y&quot;: -3.355708360671997, &quot;IDs&quot;: &quot;ENSG00000120029&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.534073829650879, &quot;y&quot;: -2.030937433242798, &quot;IDs&quot;: &quot;ENSG00000120053&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.425198554992676, &quot;y&quot;: -4.4585113525390625, &quot;IDs&quot;: &quot;ENSG00000120733&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.189272880554199, &quot;y&quot;: -3.074502468109131, &quot;IDs&quot;: &quot;ENSG00000120837&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.843667984008789, &quot;y&quot;: -5.368724822998047, &quot;IDs&quot;: &quot;ENSG00000120910&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.127280235290527, &quot;y&quot;: -6.738827705383301, &quot;IDs&quot;: &quot;ENSG00000121211&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.033071041107178, &quot;y&quot;: -5.399424076080322, &quot;IDs&quot;: &quot;ENSG00000121454&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.397492408752441, &quot;y&quot;: -4.347601413726807, &quot;IDs&quot;: &quot;ENSG00000121621&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.207451820373535, &quot;y&quot;: -3.303313732147217, &quot;IDs&quot;: &quot;ENSG00000121741&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.718708992004395, &quot;y&quot;: -2.827267646789551, &quot;IDs&quot;: &quot;ENSG00000121957&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.992470741271973, &quot;y&quot;: -2.392530679702759, &quot;IDs&quot;: &quot;ENSG00000121964&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.523125648498535, &quot;y&quot;: -2.1833302974700928, &quot;IDs&quot;: &quot;ENSG00000122033&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.055150985717773, &quot;y&quot;: -4.838315963745117, &quot;IDs&quot;: &quot;ENSG00000122299&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.908551216125488, &quot;y&quot;: -2.7991573810577393, &quot;IDs&quot;: &quot;ENSG00000122376&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.877421379089355, &quot;y&quot;: -4.594625949859619, &quot;IDs&quot;: &quot;ENSG00000122515&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.032394409179688, &quot;y&quot;: -1.9135174751281738, &quot;IDs&quot;: &quot;ENSG00000122644&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.178565979003906, &quot;y&quot;: -4.764176368713379, &quot;IDs&quot;: &quot;ENSG00000122966&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.598127841949463, &quot;y&quot;: -3.3053083419799805, &quot;IDs&quot;: &quot;ENSG00000123213&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.577860832214355, &quot;y&quot;: -2.806368589401245, &quot;IDs&quot;: &quot;ENSG00000123975&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.990431785583496, &quot;y&quot;: -4.810120105743408, &quot;IDs&quot;: &quot;ENSG00000124160&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.644014358520508, &quot;y&quot;: -3.55802583694458, &quot;IDs&quot;: &quot;ENSG00000124422&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.248368263244629, &quot;y&quot;: -4.468384265899658, &quot;IDs&quot;: &quot;ENSG00000124596&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.714512825012207, &quot;y&quot;: -2.171187400817871, &quot;IDs&quot;: &quot;ENSG00000124613&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.470420837402344, &quot;y&quot;: -6.375918388366699, &quot;IDs&quot;: &quot;ENSG00000124641&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.467142581939697, &quot;y&quot;: -5.142845630645752, &quot;IDs&quot;: &quot;ENSG00000125449&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.363078594207764, &quot;y&quot;: -3.2259769439697266, &quot;IDs&quot;: &quot;ENSG00000125703&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.73078441619873, &quot;y&quot;: -2.510490655899048, &quot;IDs&quot;: &quot;ENSG00000125755&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.509260654449463, &quot;y&quot;: -3.801138162612915, &quot;IDs&quot;: &quot;ENSG00000125863&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.768962860107422, &quot;y&quot;: -2.991299629211426, &quot;IDs&quot;: &quot;ENSG00000126003&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.685388565063477, &quot;y&quot;: -2.7495975494384766, &quot;IDs&quot;: &quot;ENSG00000126216&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.891831398010254, &quot;y&quot;: -3.8700127601623535, &quot;IDs&quot;: &quot;ENSG00000126461&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.888067722320557, &quot;y&quot;: -6.671117305755615, &quot;IDs&quot;: &quot;ENSG00000126500&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.539302825927734, &quot;y&quot;: -4.669090270996094, &quot;IDs&quot;: &quot;ENSG00000126562&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.501909255981445, &quot;y&quot;: -6.173314571380615, &quot;IDs&quot;: &quot;ENSG00000126603&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.177618026733398, &quot;y&quot;: -3.1546592712402344, &quot;IDs&quot;: &quot;ENSG00000126787&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.9607648849487305, &quot;y&quot;: -4.05763053894043, &quot;IDs&quot;: &quot;ENSG00000126858&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.691405296325684, &quot;y&quot;: -3.5737876892089844, &quot;IDs&quot;: &quot;ENSG00000127191&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.033576965332031, &quot;y&quot;: -2.987100124359131, &quot;IDs&quot;: &quot;ENSG00000127527&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.67869234085083, &quot;y&quot;: -3.6989247798919678, &quot;IDs&quot;: &quot;ENSG00000128245&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.768679141998291, &quot;y&quot;: -6.295659065246582, &quot;IDs&quot;: &quot;ENSG00000128266&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.771060943603516, &quot;y&quot;: -4.702171325683594, &quot;IDs&quot;: &quot;ENSG00000128272&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.555196762084961, &quot;y&quot;: -5.882669925689697, &quot;IDs&quot;: &quot;ENSG00000128274&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.703629016876221, &quot;y&quot;: -4.3070878982543945, &quot;IDs&quot;: &quot;ENSG00000128563&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.477306365966797, &quot;y&quot;: -4.394156455993652, &quot;IDs&quot;: &quot;ENSG00000128654&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.340282440185547, &quot;y&quot;: -3.5553627014160156, &quot;IDs&quot;: &quot;ENSG00000128656&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.432360649108887, &quot;y&quot;: -5.426767349243164, &quot;IDs&quot;: &quot;ENSG00000128731&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.4192094802856445, &quot;y&quot;: -5.476137638092041, &quot;IDs&quot;: &quot;ENSG00000128849&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.336939811706543, &quot;y&quot;: -4.234914302825928, &quot;IDs&quot;: &quot;ENSG00000128944&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.840703010559082, &quot;y&quot;: -3.4992012977600098, &quot;IDs&quot;: &quot;ENSG00000129116&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.466493606567383, &quot;y&quot;: -4.390817165374756, &quot;IDs&quot;: &quot;ENSG00000129195&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.14591121673584, &quot;y&quot;: -3.535297155380249, &quot;IDs&quot;: &quot;ENSG00000129292&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.413937091827393, &quot;y&quot;: -5.77412223815918, &quot;IDs&quot;: &quot;ENSG00000129422&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.975185394287109, &quot;y&quot;: -6.256798267364502, &quot;IDs&quot;: &quot;ENSG00000129484&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.869668006896973, &quot;y&quot;: -4.675057411193848, &quot;IDs&quot;: &quot;ENSG00000129810&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.8405070304870605, &quot;y&quot;: -3.2963995933532715, &quot;IDs&quot;: &quot;ENSG00000130227&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.541828155517578, &quot;y&quot;: -2.4720749855041504, &quot;IDs&quot;: &quot;ENSG00000130382&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.865882873535156, &quot;y&quot;: -4.6608052253723145, &quot;IDs&quot;: &quot;ENSG00000130396&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.09669303894043, &quot;y&quot;: -2.055138349533081, &quot;IDs&quot;: &quot;ENSG00000130669&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.583984375, &quot;y&quot;: -4.127953052520752, &quot;IDs&quot;: &quot;ENSG00000130699&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.4957356452941895, &quot;y&quot;: -6.076901435852051, &quot;IDs&quot;: &quot;ENSG00000130700&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.904935836791992, &quot;y&quot;: -2.4022698402404785, &quot;IDs&quot;: &quot;ENSG00000131023&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.059052467346191, &quot;y&quot;: -2.9682765007019043, &quot;IDs&quot;: &quot;ENSG00000131115&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.920467376708984, &quot;y&quot;: -3.1504411697387695, &quot;IDs&quot;: &quot;ENSG00000131149&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.980823040008545, &quot;y&quot;: -4.194443225860596, &quot;IDs&quot;: &quot;ENSG00000131374&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.621789932250977, &quot;y&quot;: -3.1424243450164795, &quot;IDs&quot;: &quot;ENSG00000131375&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.54470443725586, &quot;y&quot;: -3.1426315307617188, &quot;IDs&quot;: &quot;ENSG00000131378&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.122163772583008, &quot;y&quot;: -3.395575761795044, &quot;IDs&quot;: &quot;ENSG00000131626&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.586534023284912, &quot;y&quot;: -3.6008224487304688, &quot;IDs&quot;: &quot;ENSG00000131653&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.531748294830322, &quot;y&quot;: -3.1959309577941895, &quot;IDs&quot;: &quot;ENSG00000131732&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.188395500183105, &quot;y&quot;: -2.016558885574341, &quot;IDs&quot;: &quot;ENSG00000131848&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.245144367218018, &quot;y&quot;: -3.7535858154296875, &quot;IDs&quot;: &quot;ENSG00000131943&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.556154727935791, &quot;y&quot;: -6.376060962677002, &quot;IDs&quot;: &quot;ENSG00000132024&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.840336322784424, &quot;y&quot;: -3.627938747406006, &quot;IDs&quot;: &quot;ENSG00000132153&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.878686904907227, &quot;y&quot;: -3.142888069152832, &quot;IDs&quot;: &quot;ENSG00000132361&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.50749683380127, &quot;y&quot;: -5.454949855804443, &quot;IDs&quot;: &quot;ENSG00000132394&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.71367073059082, &quot;y&quot;: -2.7649970054626465, &quot;IDs&quot;: &quot;ENSG00000132405&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.961978912353516, &quot;y&quot;: -3.9466183185577393, &quot;IDs&quot;: &quot;ENSG00000132591&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.82686710357666, &quot;y&quot;: -5.760937213897705, &quot;IDs&quot;: &quot;ENSG00000132613&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.250776290893555, &quot;y&quot;: -2.2170827388763428, &quot;IDs&quot;: &quot;ENSG00000132964&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.825727939605713, &quot;y&quot;: -4.960648536682129, &quot;IDs&quot;: &quot;ENSG00000132970&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.167057991027832, &quot;y&quot;: -6.2274603843688965, &quot;IDs&quot;: &quot;ENSG00000133104&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.766512870788574, &quot;y&quot;: -5.0197062492370605, &quot;IDs&quot;: &quot;ENSG00000133275&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.028564453125, &quot;y&quot;: -2.0670015811920166, &quot;IDs&quot;: &quot;ENSG00000133393&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.0952301025390625, &quot;y&quot;: -6.432217121124268, &quot;IDs&quot;: &quot;ENSG00000133424&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.5885467529296875, &quot;y&quot;: -5.674091339111328, &quot;IDs&quot;: &quot;ENSG00000133640&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.893984317779541, &quot;y&quot;: -3.790926933288574, &quot;IDs&quot;: &quot;ENSG00000133740&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.311537742614746, &quot;y&quot;: -4.771525859832764, &quot;IDs&quot;: &quot;ENSG00000133812&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.37364387512207, &quot;y&quot;: -4.548560619354248, &quot;IDs&quot;: &quot;ENSG00000133895&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.892655372619629, &quot;y&quot;: -2.3629984855651855, &quot;IDs&quot;: &quot;ENSG00000134057&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.557225704193115, &quot;y&quot;: -2.001336097717285, &quot;IDs&quot;: &quot;ENSG00000134061&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.523609161376953, &quot;y&quot;: -4.374500274658203, &quot;IDs&quot;: &quot;ENSG00000134222&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.261724472045898, &quot;y&quot;: -6.773345947265625, &quot;IDs&quot;: &quot;ENSG00000134324&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.34997272491455, &quot;y&quot;: -5.128054141998291, &quot;IDs&quot;: &quot;ENSG00000134452&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.89768648147583, &quot;y&quot;: -3.9706456661224365, &quot;IDs&quot;: &quot;ENSG00000134533&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.40223217010498, &quot;y&quot;: -4.835177898406982, &quot;IDs&quot;: &quot;ENSG00000134538&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.43218994140625, &quot;y&quot;: -4.460117816925049, &quot;IDs&quot;: &quot;ENSG00000134690&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.89772891998291, &quot;y&quot;: -4.486166954040527, &quot;IDs&quot;: &quot;ENSG00000134744&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.134305953979492, &quot;y&quot;: -2.646036386489868, &quot;IDs&quot;: &quot;ENSG00000134758&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.162785530090332, &quot;y&quot;: -2.888451337814331, &quot;IDs&quot;: &quot;ENSG00000134852&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.297072887420654, &quot;y&quot;: -3.6321299076080322, &quot;IDs&quot;: &quot;ENSG00000135049&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.070817947387695, &quot;y&quot;: -4.12774658203125, &quot;IDs&quot;: &quot;ENSG00000135093&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.606021881103516, &quot;y&quot;: -4.505120754241943, &quot;IDs&quot;: &quot;ENSG00000135205&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.347098350524902, &quot;y&quot;: -2.1336519718170166, &quot;IDs&quot;: &quot;ENSG00000135632&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.808242321014404, &quot;y&quot;: -4.118968486785889, &quot;IDs&quot;: &quot;ENSG00000135736&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.877951622009277, &quot;y&quot;: -5.2930755615234375, &quot;IDs&quot;: &quot;ENSG00000135945&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.251592636108398, &quot;y&quot;: -3.4856793880462646, &quot;IDs&quot;: &quot;ENSG00000135966&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.374147415161133, &quot;y&quot;: -4.024832248687744, &quot;IDs&quot;: &quot;ENSG00000136098&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.778190612792969, &quot;y&quot;: -3.0004336833953857, &quot;IDs&quot;: &quot;ENSG00000136111&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.182365417480469, &quot;y&quot;: -4.0411906242370605, &quot;IDs&quot;: &quot;ENSG00000136122&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.328658103942871, &quot;y&quot;: -4.529013156890869, &quot;IDs&quot;: &quot;ENSG00000136153&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.229964256286621, &quot;y&quot;: -4.263492107391357, &quot;IDs&quot;: &quot;ENSG00000136448&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.367698669433594, &quot;y&quot;: -3.0690274238586426, &quot;IDs&quot;: &quot;ENSG00000136536&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.152951717376709, &quot;y&quot;: -6.3482584953308105, &quot;IDs&quot;: &quot;ENSG00000136574&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.811884880065918, &quot;y&quot;: -4.016711235046387, &quot;IDs&quot;: &quot;ENSG00000136699&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.962359428405762, &quot;y&quot;: -4.731108665466309, &quot;IDs&quot;: &quot;ENSG00000136709&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.11076831817627, &quot;y&quot;: -4.336503982543945, &quot;IDs&quot;: &quot;ENSG00000136715&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.936857223510742, &quot;y&quot;: -2.8242316246032715, &quot;IDs&quot;: &quot;ENSG00000136811&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.486308097839355, &quot;y&quot;: -4.178306579589844, &quot;IDs&quot;: &quot;ENSG00000136861&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.558627128601074, &quot;y&quot;: -4.904215335845947, &quot;IDs&quot;: &quot;ENSG00000136870&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.085628509521484, &quot;y&quot;: -3.779024362564087, &quot;IDs&quot;: &quot;ENSG00000136936&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.857193946838379, &quot;y&quot;: -4.008557319641113, &quot;IDs&quot;: &quot;ENSG00000136944&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.675116062164307, &quot;y&quot;: -3.1583750247955322, &quot;IDs&quot;: &quot;ENSG00000137168&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.470468521118164, &quot;y&quot;: -4.3678693771362305, &quot;IDs&quot;: &quot;ENSG00000137337&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.566445350646973, &quot;y&quot;: -4.398362636566162, &quot;IDs&quot;: &quot;ENSG00000137710&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.912319183349609, &quot;y&quot;: -4.036919593811035, &quot;IDs&quot;: &quot;ENSG00000137764&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.350268363952637, &quot;y&quot;: -5.0591654777526855, &quot;IDs&quot;: &quot;ENSG00000138032&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.410485744476318, &quot;y&quot;: -5.41928243637085, &quot;IDs&quot;: &quot;ENSG00000138101&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.192707061767578, &quot;y&quot;: -2.422149896621704, &quot;IDs&quot;: &quot;ENSG00000138180&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.074501037597656, &quot;y&quot;: -3.9091851711273193, &quot;IDs&quot;: &quot;ENSG00000138375&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.565180778503418, &quot;y&quot;: -6.143461227416992, &quot;IDs&quot;: &quot;ENSG00000138395&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.031042098999023, &quot;y&quot;: -2.4477286338806152, &quot;IDs&quot;: &quot;ENSG00000138640&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.031233787536621, &quot;y&quot;: -3.3722198009490967, &quot;IDs&quot;: &quot;ENSG00000138802&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.157838821411133, &quot;y&quot;: -3.7121245861053467, &quot;IDs&quot;: &quot;ENSG00000139291&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.656913757324219, &quot;y&quot;: -5.800320148468018, &quot;IDs&quot;: &quot;ENSG00000139350&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.473589897155762, &quot;y&quot;: -4.29850959777832, &quot;IDs&quot;: &quot;ENSG00000139354&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.877234935760498, &quot;y&quot;: -2.571817636489868, &quot;IDs&quot;: &quot;ENSG00000139675&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.350940227508545, &quot;y&quot;: -5.229881286621094, &quot;IDs&quot;: &quot;ENSG00000139734&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.739302158355713, &quot;y&quot;: -5.662746906280518, &quot;IDs&quot;: &quot;ENSG00000140044&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.880126953125, &quot;y&quot;: -3.1951308250427246, &quot;IDs&quot;: &quot;ENSG00000140262&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.456714153289795, &quot;y&quot;: -6.622428894042969, &quot;IDs&quot;: &quot;ENSG00000140323&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.862941265106201, &quot;y&quot;: -4.836787223815918, &quot;IDs&quot;: &quot;ENSG00000140386&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.822998046875, &quot;y&quot;: -3.149096965789795, &quot;IDs&quot;: &quot;ENSG00000140406&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.580472469329834, &quot;y&quot;: -2.3681209087371826, &quot;IDs&quot;: &quot;ENSG00000140750&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.808940887451172, &quot;y&quot;: -5.255731582641602, &quot;IDs&quot;: &quot;ENSG00000140948&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.608437538146973, &quot;y&quot;: -4.39619255065918, &quot;IDs&quot;: &quot;ENSG00000141084&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.556109428405762, &quot;y&quot;: -4.440492630004883, &quot;IDs&quot;: &quot;ENSG00000141376&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.929418563842773, &quot;y&quot;: -3.0353426933288574, &quot;IDs&quot;: &quot;ENSG00000141380&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.472630023956299, &quot;y&quot;: -4.2044243812561035, &quot;IDs&quot;: &quot;ENSG00000141385&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.814921379089355, &quot;y&quot;: -5.320831775665283, &quot;IDs&quot;: &quot;ENSG00000141503&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.382421493530273, &quot;y&quot;: -4.4153547286987305, &quot;IDs&quot;: &quot;ENSG00000141564&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.332536220550537, &quot;y&quot;: -4.868024826049805, &quot;IDs&quot;: &quot;ENSG00000141627&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.559265613555908, &quot;y&quot;: -4.720175266265869, &quot;IDs&quot;: &quot;ENSG00000141664&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.946579456329346, &quot;y&quot;: -4.623892784118652, &quot;IDs&quot;: &quot;ENSG00000141837&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.858311653137207, &quot;y&quot;: -2.6206090450286865, &quot;IDs&quot;: &quot;ENSG00000141905&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.93507194519043, &quot;y&quot;: -4.1768999099731445, &quot;IDs&quot;: &quot;ENSG00000142039&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.629475116729736, &quot;y&quot;: -6.261130332946777, &quot;IDs&quot;: &quot;ENSG00000142197&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.370882034301758, &quot;y&quot;: -3.175468921661377, &quot;IDs&quot;: &quot;ENSG00000143033&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.131294250488281, &quot;y&quot;: -4.235108375549316, &quot;IDs&quot;: &quot;ENSG00000143228&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.326950550079346, &quot;y&quot;: -4.439671993255615, &quot;IDs&quot;: &quot;ENSG00000143437&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.856724739074707, &quot;y&quot;: -3.8739960193634033, &quot;IDs&quot;: &quot;ENSG00000143512&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.135354042053223, &quot;y&quot;: -4.690296173095703, &quot;IDs&quot;: &quot;ENSG00000143514&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.48701810836792, &quot;y&quot;: -5.876859188079834, &quot;IDs&quot;: &quot;ENSG00000143553&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.376869201660156, &quot;y&quot;: -4.278886795043945, &quot;IDs&quot;: &quot;ENSG00000143776&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.170412063598633, &quot;y&quot;: -4.579714298248291, &quot;IDs&quot;: &quot;ENSG00000143815&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.027263641357422, &quot;y&quot;: -4.024162292480469, &quot;IDs&quot;: &quot;ENSG00000143919&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.325559616088867, &quot;y&quot;: -3.957095146179199, &quot;IDs&quot;: &quot;ENSG00000143952&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.9217848777771, &quot;y&quot;: -6.859236717224121, &quot;IDs&quot;: &quot;ENSG00000144036&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.920986175537109, &quot;y&quot;: -2.715437650680542, &quot;IDs&quot;: &quot;ENSG00000144283&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.325556755065918, &quot;y&quot;: -3.6901440620422363, &quot;IDs&quot;: &quot;ENSG00000144355&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.773838996887207, &quot;y&quot;: -2.330270767211914, &quot;IDs&quot;: &quot;ENSG00000144583&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.678365707397461, &quot;y&quot;: -3.722203493118286, &quot;IDs&quot;: &quot;ENSG00000144645&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.532611846923828, &quot;y&quot;: -3.366464614868164, &quot;IDs&quot;: &quot;ENSG00000144724&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.108217239379883, &quot;y&quot;: -2.692235231399536, &quot;IDs&quot;: &quot;ENSG00000144908&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.915388107299805, &quot;y&quot;: -2.4891419410705566, &quot;IDs&quot;: &quot;ENSG00000145041&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.076495170593262, &quot;y&quot;: -4.232439994812012, &quot;IDs&quot;: &quot;ENSG00000145386&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.016602516174316, &quot;y&quot;: -5.9398393630981445, &quot;IDs&quot;: &quot;ENSG00000145623&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.940315246582031, &quot;y&quot;: -2.315976858139038, &quot;IDs&quot;: &quot;ENSG00000145715&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.848001956939697, &quot;y&quot;: -5.3799214363098145, &quot;IDs&quot;: &quot;ENSG00000145996&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.214674949645996, &quot;y&quot;: -4.201589107513428, &quot;IDs&quot;: &quot;ENSG00000146143&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.914151191711426, &quot;y&quot;: -4.527283191680908, &quot;IDs&quot;: &quot;ENSG00000146463&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.3481764793396, &quot;y&quot;: -5.642435073852539, &quot;IDs&quot;: &quot;ENSG00000146966&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.599905014038086, &quot;y&quot;: -3.1539480686187744, &quot;IDs&quot;: &quot;ENSG00000147082&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.449258804321289, &quot;y&quot;: -2.3708407878875732, &quot;IDs&quot;: &quot;ENSG00000147316&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.867580890655518, &quot;y&quot;: -4.86131477355957, &quot;IDs&quot;: &quot;ENSG00000147862&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.104220390319824, &quot;y&quot;: -2.6827611923217773, &quot;IDs&quot;: &quot;ENSG00000147905&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.052249908447266, &quot;y&quot;: -4.334103584289551, &quot;IDs&quot;: &quot;ENSG00000147912&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.502674102783203, &quot;y&quot;: -3.4182043075561523, &quot;IDs&quot;: &quot;ENSG00000148337&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.425121784210205, &quot;y&quot;: -5.716564178466797, &quot;IDs&quot;: &quot;ENSG00000148411&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.04316234588623, &quot;y&quot;: -2.0367319583892822, &quot;IDs&quot;: &quot;ENSG00000148429&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.44568395614624, &quot;y&quot;: -3.182678461074829, &quot;IDs&quot;: &quot;ENSG00000148498&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.814054489135742, &quot;y&quot;: -4.574275493621826, &quot;IDs&quot;: &quot;ENSG00000148660&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.345942497253418, &quot;y&quot;: -3.6213319301605225, &quot;IDs&quot;: &quot;ENSG00000148690&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.635788917541504, &quot;y&quot;: -3.495037078857422, &quot;IDs&quot;: &quot;ENSG00000148719&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.871756553649902, &quot;y&quot;: -5.78497314453125, &quot;IDs&quot;: &quot;ENSG00000148985&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.240549564361572, &quot;y&quot;: -5.629116058349609, &quot;IDs&quot;: &quot;ENSG00000149474&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.770491600036621, &quot;y&quot;: -2.4081408977508545, &quot;IDs&quot;: &quot;ENSG00000149571&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.110875129699707, &quot;y&quot;: -4.769527435302734, &quot;IDs&quot;: &quot;ENSG00000149639&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.009686470031738, &quot;y&quot;: -3.8551716804504395, &quot;IDs&quot;: &quot;ENSG00000149657&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.583361625671387, &quot;y&quot;: -3.0844595432281494, &quot;IDs&quot;: &quot;ENSG00000150054&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.291395664215088, &quot;y&quot;: -5.015847682952881, &quot;IDs&quot;: &quot;ENSG00000150477&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.142106056213379, &quot;y&quot;: -3.077336311340332, &quot;IDs&quot;: &quot;ENSG00000150712&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.741366386413574, &quot;y&quot;: -3.949634313583374, &quot;IDs&quot;: &quot;ENSG00000150756&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.798581600189209, &quot;y&quot;: -4.162020206451416, &quot;IDs&quot;: &quot;ENSG00000150760&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.93408727645874, &quot;y&quot;: -4.051079750061035, &quot;IDs&quot;: &quot;ENSG00000151148&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.977867603302002, &quot;y&quot;: -4.447885513305664, &quot;IDs&quot;: &quot;ENSG00000151208&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.265902519226074, &quot;y&quot;: -4.207707405090332, &quot;IDs&quot;: &quot;ENSG00000151276&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.041154384613037, &quot;y&quot;: -4.853054046630859, &quot;IDs&quot;: &quot;ENSG00000151445&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.186988830566406, &quot;y&quot;: -3.714586019515991, &quot;IDs&quot;: &quot;ENSG00000151461&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.469154357910156, &quot;y&quot;: -2.992088794708252, &quot;IDs&quot;: &quot;ENSG00000151466&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.44251823425293, &quot;y&quot;: -4.450607776641846, &quot;IDs&quot;: &quot;ENSG00000151726&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.826872825622559, &quot;y&quot;: -1.9937314987182617, &quot;IDs&quot;: &quot;ENSG00000152086&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.594606399536133, &quot;y&quot;: -6.410991191864014, &quot;IDs&quot;: &quot;ENSG00000152253&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.231130599975586, &quot;y&quot;: -6.290838241577148, &quot;IDs&quot;: &quot;ENSG00000152348&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.024395942687988, &quot;y&quot;: -3.898392915725708, &quot;IDs&quot;: &quot;ENSG00000152404&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.829428195953369, &quot;y&quot;: -3.8824710845947266, &quot;IDs&quot;: &quot;ENSG00000152818&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.1616716384887695, &quot;y&quot;: -4.595758438110352, &quot;IDs&quot;: &quot;ENSG00000153786&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.726367473602295, &quot;y&quot;: -3.5030415058135986, &quot;IDs&quot;: &quot;ENSG00000153993&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.888145446777344, &quot;y&quot;: -3.8987841606140137, &quot;IDs&quot;: &quot;ENSG00000154040&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.889592170715332, &quot;y&quot;: -2.980037212371826, &quot;IDs&quot;: &quot;ENSG00000154127&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.945466995239258, &quot;y&quot;: -3.6794300079345703, &quot;IDs&quot;: &quot;ENSG00000154229&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.547898292541504, &quot;y&quot;: -3.272528886795044, &quot;IDs&quot;: &quot;ENSG00000154240&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.861352920532227, &quot;y&quot;: -4.7047929763793945, &quot;IDs&quot;: &quot;ENSG00000154429&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.178385734558105, &quot;y&quot;: -4.401729106903076, &quot;IDs&quot;: &quot;ENSG00000154845&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.176522254943848, &quot;y&quot;: -2.2475945949554443, &quot;IDs&quot;: &quot;ENSG00000155111&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.811006546020508, &quot;y&quot;: -3.596081018447876, &quot;IDs&quot;: &quot;ENSG00000155561&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.234925746917725, &quot;y&quot;: -5.301029205322266, &quot;IDs&quot;: &quot;ENSG00000155729&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.917516231536865, &quot;y&quot;: -4.153062343597412, &quot;IDs&quot;: &quot;ENSG00000155974&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.929191589355469, &quot;y&quot;: -4.738874912261963, &quot;IDs&quot;: &quot;ENSG00000156136&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.078294277191162, &quot;y&quot;: -5.4225921630859375, &quot;IDs&quot;: &quot;ENSG00000156469&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.415506839752197, &quot;y&quot;: -5.196782112121582, &quot;IDs&quot;: &quot;ENSG00000156787&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.725263595581055, &quot;y&quot;: -4.749683380126953, &quot;IDs&quot;: &quot;ENSG00000156970&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.773425102233887, &quot;y&quot;: -5.148455619812012, &quot;IDs&quot;: &quot;ENSG00000157111&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.1644182205200195, &quot;y&quot;: -3.6158647537231445, &quot;IDs&quot;: &quot;ENSG00000157426&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.122055053710938, &quot;y&quot;: -2.1043701171875, &quot;IDs&quot;: &quot;ENSG00000157456&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.473991394042969, &quot;y&quot;: -2.5690627098083496, &quot;IDs&quot;: &quot;ENSG00000157510&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.435528755187988, &quot;y&quot;: -3.64617919921875, &quot;IDs&quot;: &quot;ENSG00000157657&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.421818256378174, &quot;y&quot;: -2.9786596298217773, &quot;IDs&quot;: &quot;ENSG00000157985&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.105209350585938, &quot;y&quot;: -3.859511613845825, &quot;IDs&quot;: &quot;ENSG00000158006&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.591931343078613, &quot;y&quot;: -3.577129364013672, &quot;IDs&quot;: &quot;ENSG00000158683&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.8794708251953125, &quot;y&quot;: -4.501945495605469, &quot;IDs&quot;: &quot;ENSG00000158856&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.486923694610596, &quot;y&quot;: -4.916253089904785, &quot;IDs&quot;: &quot;ENSG00000158985&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.520618438720703, &quot;y&quot;: -4.448951721191406, &quot;IDs&quot;: &quot;ENSG00000159184&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.249452590942383, &quot;y&quot;: -4.192119121551514, &quot;IDs&quot;: &quot;ENSG00000159873&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.591011047363281, &quot;y&quot;: -2.094522714614868, &quot;IDs&quot;: &quot;ENSG00000160007&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.865819931030273, &quot;y&quot;: -3.029484987258911, &quot;IDs&quot;: &quot;ENSG00000160087&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.139579772949219, &quot;y&quot;: -3.3806686401367188, &quot;IDs&quot;: &quot;ENSG00000160172&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.122097492218018, &quot;y&quot;: -5.954331398010254, &quot;IDs&quot;: &quot;ENSG00000160191&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.427900314331055, &quot;y&quot;: -6.441426753997803, &quot;IDs&quot;: &quot;ENSG00000160285&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.157633781433105, &quot;y&quot;: -3.92112398147583, &quot;IDs&quot;: &quot;ENSG00000160294&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.499842643737793, &quot;y&quot;: -6.484711170196533, &quot;IDs&quot;: &quot;ENSG00000160949&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.672737121582031, &quot;y&quot;: -5.392492771148682, &quot;IDs&quot;: &quot;ENSG00000160953&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.894661903381348, &quot;y&quot;: -5.127030849456787, &quot;IDs&quot;: &quot;ENSG00000161180&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.028463363647461, &quot;y&quot;: -4.655617713928223, &quot;IDs&quot;: &quot;ENSG00000161202&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.282970428466797, &quot;y&quot;: -4.882302284240723, &quot;IDs&quot;: &quot;ENSG00000161542&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.031229972839355, &quot;y&quot;: -4.176078796386719, &quot;IDs&quot;: &quot;ENSG00000161800&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.063563823699951, &quot;y&quot;: -2.8963663578033447, &quot;IDs&quot;: &quot;ENSG00000162517&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.797971248626709, &quot;y&quot;: -4.731537818908691, &quot;IDs&quot;: &quot;ENSG00000162522&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.629774570465088, &quot;y&quot;: -4.70347261428833, &quot;IDs&quot;: &quot;ENSG00000162600&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.939547538757324, &quot;y&quot;: -1.8046046495437622, &quot;IDs&quot;: &quot;ENSG00000162636&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.257695198059082, &quot;y&quot;: -2.2368762493133545, &quot;IDs&quot;: &quot;ENSG00000163002&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.494377136230469, &quot;y&quot;: -2.6476693153381348, &quot;IDs&quot;: &quot;ENSG00000163374&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.684073448181152, &quot;y&quot;: -3.3163084983825684, &quot;IDs&quot;: &quot;ENSG00000163431&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.023174285888672, &quot;y&quot;: -2.006387710571289, &quot;IDs&quot;: &quot;ENSG00000163510&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.405305862426758, &quot;y&quot;: -4.472859859466553, &quot;IDs&quot;: &quot;ENSG00000163535&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.015960693359375, &quot;y&quot;: -4.940628528594971, &quot;IDs&quot;: &quot;ENSG00000163539&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.945493698120117, &quot;y&quot;: -4.798905849456787, &quot;IDs&quot;: &quot;ENSG00000163808&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.446103096008301, &quot;y&quot;: -4.74575138092041, &quot;IDs&quot;: &quot;ENSG00000163820&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.76607894897461, &quot;y&quot;: -2.185962438583374, &quot;IDs&quot;: &quot;ENSG00000163848&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.568675518035889, &quot;y&quot;: -3.11728572845459, &quot;IDs&quot;: &quot;ENSG00000163946&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.93761157989502, &quot;y&quot;: -3.8215277194976807, &quot;IDs&quot;: &quot;ENSG00000164010&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.557168960571289, &quot;y&quot;: -4.162543296813965, &quot;IDs&quot;: &quot;ENSG00000164104&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.420286655426025, &quot;y&quot;: -3.4027390480041504, &quot;IDs&quot;: &quot;ENSG00000164109&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.642659187316895, &quot;y&quot;: -4.77065896987915, &quot;IDs&quot;: &quot;ENSG00000164185&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.337614059448242, &quot;y&quot;: -4.327269077301025, &quot;IDs&quot;: &quot;ENSG00000164323&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.6995954513549805, &quot;y&quot;: -4.29414176940918, &quot;IDs&quot;: &quot;ENSG00000164494&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.307519435882568, &quot;y&quot;: -5.389703273773193, &quot;IDs&quot;: &quot;ENSG00000164506&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.041398525238037, &quot;y&quot;: -4.745542049407959, &quot;IDs&quot;: &quot;ENSG00000164758&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.688668251037598, &quot;y&quot;: -3.3239846229553223, &quot;IDs&quot;: &quot;ENSG00000164815&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.4002909660339355, &quot;y&quot;: -5.266808986663818, &quot;IDs&quot;: &quot;ENSG00000164828&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.822134971618652, &quot;y&quot;: -3.8996496200561523, &quot;IDs&quot;: &quot;ENSG00000164880&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.935059547424316, &quot;y&quot;: -3.033604383468628, &quot;IDs&quot;: &quot;ENSG00000165006&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.538752555847168, &quot;y&quot;: -2.135232448577881, &quot;IDs&quot;: &quot;ENSG00000165071&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.599835395812988, &quot;y&quot;: -4.707733154296875, &quot;IDs&quot;: &quot;ENSG00000165164&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.9758992195129395, &quot;y&quot;: -6.55761194229126, &quot;IDs&quot;: &quot;ENSG00000165238&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.891117095947266, &quot;y&quot;: -3.041159152984619, &quot;IDs&quot;: &quot;ENSG00000165322&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.038010597229004, &quot;y&quot;: -3.295578956604004, &quot;IDs&quot;: &quot;ENSG00000165626&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.865822792053223, &quot;y&quot;: -2.259631872177124, &quot;IDs&quot;: &quot;ENSG00000165660&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.035640716552734, &quot;y&quot;: -1.9799644947052002, &quot;IDs&quot;: &quot;ENSG00000165675&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.166085720062256, &quot;y&quot;: -5.0166120529174805, &quot;IDs&quot;: &quot;ENSG00000165689&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.412408828735352, &quot;y&quot;: -5.495426177978516, &quot;IDs&quot;: &quot;ENSG00000165898&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.3973069190979, &quot;y&quot;: -4.953521251678467, &quot;IDs&quot;: &quot;ENSG00000166263&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.855967044830322, &quot;y&quot;: -6.157018184661865, &quot;IDs&quot;: &quot;ENSG00000166321&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.329309463500977, &quot;y&quot;: -3.1917967796325684, &quot;IDs&quot;: &quot;ENSG00000166387&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.698984146118164, &quot;y&quot;: -2.25433349609375, &quot;IDs&quot;: &quot;ENSG00000166477&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.7662034034729, &quot;y&quot;: -5.173338890075684, &quot;IDs&quot;: &quot;ENSG00000166575&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.495282173156738, &quot;y&quot;: -4.314163684844971, &quot;IDs&quot;: &quot;ENSG00000166821&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.688514709472656, &quot;y&quot;: -4.581331729888916, &quot;IDs&quot;: &quot;ENSG00000166833&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.274746894836426, &quot;y&quot;: -3.581109046936035, &quot;IDs&quot;: &quot;ENSG00000166851&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.1145601272583, &quot;y&quot;: -4.180370807647705, &quot;IDs&quot;: &quot;ENSG00000166987&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.1023359298706055, &quot;y&quot;: -3.3894457817077637, &quot;IDs&quot;: &quot;ENSG00000167081&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.285931587219238, &quot;y&quot;: -4.838613986968994, &quot;IDs&quot;: &quot;ENSG00000167193&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.743548393249512, &quot;y&quot;: -3.0252480506896973, &quot;IDs&quot;: &quot;ENSG00000167461&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.300898551940918, &quot;y&quot;: -1.9530435800552368, &quot;IDs&quot;: &quot;ENSG00000167522&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.598581314086914, &quot;y&quot;: -3.2874250411987305, &quot;IDs&quot;: &quot;ENSG00000167962&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.525057792663574, &quot;y&quot;: -3.334728956222534, &quot;IDs&quot;: &quot;ENSG00000167987&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.607250213623047, &quot;y&quot;: -2.268798828125, &quot;IDs&quot;: &quot;ENSG00000167994&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.019279956817627, &quot;y&quot;: -3.931347608566284, &quot;IDs&quot;: &quot;ENSG00000168005&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.261761665344238, &quot;y&quot;: -2.6280336380004883, &quot;IDs&quot;: &quot;ENSG00000168078&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.68923282623291, &quot;y&quot;: -4.945310592651367, &quot;IDs&quot;: &quot;ENSG00000168096&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.994304656982422, &quot;y&quot;: -3.6793711185455322, &quot;IDs&quot;: &quot;ENSG00000168228&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.156697750091553, &quot;y&quot;: -4.987637042999268, &quot;IDs&quot;: &quot;ENSG00000168395&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.4313325881958, &quot;y&quot;: -2.0705454349517822, &quot;IDs&quot;: &quot;ENSG00000168454&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.066795349121094, &quot;y&quot;: -3.920825481414795, &quot;IDs&quot;: &quot;ENSG00000168488&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.458272457122803, &quot;y&quot;: -3.488356351852417, &quot;IDs&quot;: &quot;ENSG00000168491&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.673628807067871, &quot;y&quot;: -4.882181644439697, &quot;IDs&quot;: &quot;ENSG00000168497&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.629899024963379, &quot;y&quot;: -5.792309284210205, &quot;IDs&quot;: &quot;ENSG00000168538&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.833132743835449, &quot;y&quot;: -6.732046604156494, &quot;IDs&quot;: &quot;ENSG00000168575&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.66810131072998, &quot;y&quot;: -3.116246223449707, &quot;IDs&quot;: &quot;ENSG00000168818&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.510452747344971, &quot;y&quot;: -4.759296894073486, &quot;IDs&quot;: &quot;ENSG00000168874&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.284277439117432, &quot;y&quot;: -5.920400619506836, &quot;IDs&quot;: &quot;ENSG00000168913&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.874215126037598, &quot;y&quot;: -2.9195327758789062, &quot;IDs&quot;: &quot;ENSG00000169239&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.90656852722168, &quot;y&quot;: -2.159621000289917, &quot;IDs&quot;: &quot;ENSG00000169403&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.400378227233887, &quot;y&quot;: -5.090634346008301, &quot;IDs&quot;: &quot;ENSG00000169598&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.087250709533691, &quot;y&quot;: -4.719953536987305, &quot;IDs&quot;: &quot;ENSG00000169607&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.292914390563965, &quot;y&quot;: -4.160792350769043, &quot;IDs&quot;: &quot;ENSG00000169679&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.736918926239014, &quot;y&quot;: -5.425604343414307, &quot;IDs&quot;: &quot;ENSG00000169740&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.363442420959473, &quot;y&quot;: -3.077794075012207, &quot;IDs&quot;: &quot;ENSG00000169760&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.975749492645264, &quot;y&quot;: -6.589698791503906, &quot;IDs&quot;: &quot;ENSG00000169925&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.20829963684082, &quot;y&quot;: -4.336083889007568, &quot;IDs&quot;: &quot;ENSG00000170037&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.576627731323242, &quot;y&quot;: -4.665071487426758, &quot;IDs&quot;: &quot;ENSG00000170145&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.291197776794434, &quot;y&quot;: -5.5243730545043945, &quot;IDs&quot;: &quot;ENSG00000170293&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.024494171142578, &quot;y&quot;: -2.6316821575164795, &quot;IDs&quot;: &quot;ENSG00000170325&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.83661413192749, &quot;y&quot;: -6.315570831298828, &quot;IDs&quot;: &quot;ENSG00000170365&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.643367290496826, &quot;y&quot;: -6.984165191650391, &quot;IDs&quot;: &quot;ENSG00000170382&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.643146991729736, &quot;y&quot;: -6.5893378257751465, &quot;IDs&quot;: &quot;ENSG00000170390&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.6085309982299805, &quot;y&quot;: -5.190263271331787, &quot;IDs&quot;: &quot;ENSG00000170485&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.365474700927734, &quot;y&quot;: -3.1048009395599365, &quot;IDs&quot;: &quot;ENSG00000170638&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.535486221313477, &quot;y&quot;: -4.344945430755615, &quot;IDs&quot;: &quot;ENSG00000170677&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.75229263305664, &quot;y&quot;: -2.7452685832977295, &quot;IDs&quot;: &quot;ENSG00000170852&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.691025257110596, &quot;y&quot;: -2.1172690391540527, &quot;IDs&quot;: &quot;ENSG00000170854&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.728591918945312, &quot;y&quot;: -3.9299566745758057, &quot;IDs&quot;: &quot;ENSG00000171056&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.05378532409668, &quot;y&quot;: -3.458435297012329, &quot;IDs&quot;: &quot;ENSG00000171084&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.422094345092773, &quot;y&quot;: -4.264456272125244, &quot;IDs&quot;: &quot;ENSG00000171169&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.732800006866455, &quot;y&quot;: -5.429464340209961, &quot;IDs&quot;: &quot;ENSG00000171224&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.85412883758545, &quot;y&quot;: -3.6591947078704834, &quot;IDs&quot;: &quot;ENSG00000171302&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.694108963012695, &quot;y&quot;: -4.368645668029785, &quot;IDs&quot;: &quot;ENSG00000171621&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.632555961608887, &quot;y&quot;: -3.717834711074829, &quot;IDs&quot;: &quot;ENSG00000171634&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.914151191711426, &quot;y&quot;: -4.233514308929443, &quot;IDs&quot;: &quot;ENSG00000171681&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.475854396820068, &quot;y&quot;: -6.3756327629089355, &quot;IDs&quot;: &quot;ENSG00000171700&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.757165908813477, &quot;y&quot;: -3.9587268829345703, &quot;IDs&quot;: &quot;ENSG00000171791&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.978888511657715, &quot;y&quot;: -5.003598690032959, &quot;IDs&quot;: &quot;ENSG00000171792&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.68702507019043, &quot;y&quot;: -5.211636066436768, &quot;IDs&quot;: &quot;ENSG00000171813&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.850703239440918, &quot;y&quot;: -3.129491090774536, &quot;IDs&quot;: &quot;ENSG00000171872&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.198412895202637, &quot;y&quot;: -4.479145050048828, &quot;IDs&quot;: &quot;ENSG00000172046&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.20616626739502, &quot;y&quot;: -3.435875654220581, &quot;IDs&quot;: &quot;ENSG00000172534&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.86205530166626, &quot;y&quot;: -2.6040830612182617, &quot;IDs&quot;: &quot;ENSG00000172731&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.451869010925293, &quot;y&quot;: -4.958284378051758, &quot;IDs&quot;: &quot;ENSG00000172878&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.174881935119629, &quot;y&quot;: -3.0543227195739746, &quot;IDs&quot;: &quot;ENSG00000172985&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.899772644042969, &quot;y&quot;: -4.272539138793945, &quot;IDs&quot;: &quot;ENSG00000173218&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.974587440490723, &quot;y&quot;: -3.187549591064453, &quot;IDs&quot;: &quot;ENSG00000173456&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.6887030601501465, &quot;y&quot;: -6.158768177032471, &quot;IDs&quot;: &quot;ENSG00000173757&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.77319860458374, &quot;y&quot;: -6.138394832611084, &quot;IDs&quot;: &quot;ENSG00000173894&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.058975696563721, &quot;y&quot;: -2.8063271045684814, &quot;IDs&quot;: &quot;ENSG00000173991&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.305298805236816, &quot;y&quot;: -5.482367992401123, &quot;IDs&quot;: &quot;ENSG00000174306&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.124929428100586, &quot;y&quot;: -1.9473601579666138, &quot;IDs&quot;: &quot;ENSG00000174720&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.025347709655762, &quot;y&quot;: -5.463742733001709, &quot;IDs&quot;: &quot;ENSG00000174839&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.700725078582764, &quot;y&quot;: -5.808220386505127, &quot;IDs&quot;: &quot;ENSG00000174842&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.977492332458496, &quot;y&quot;: -2.9364800453186035, &quot;IDs&quot;: &quot;ENSG00000175221&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.685262680053711, &quot;y&quot;: -2.0876293182373047, &quot;IDs&quot;: &quot;ENSG00000175395&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.39144229888916, &quot;y&quot;: -4.7483015060424805, &quot;IDs&quot;: &quot;ENSG00000175470&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.5499114990234375, &quot;y&quot;: -3.2745285034179688, &quot;IDs&quot;: &quot;ENSG00000175985&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.420511722564697, &quot;y&quot;: -5.38551139831543, &quot;IDs&quot;: &quot;ENSG00000176049&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.742377758026123, &quot;y&quot;: -5.145116329193115, &quot;IDs&quot;: &quot;ENSG00000177303&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.752962589263916, &quot;y&quot;: -4.028777122497559, &quot;IDs&quot;: &quot;ENSG00000177732&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.541727066040039, &quot;y&quot;: -2.14262056350708, &quot;IDs&quot;: &quot;ENSG00000178105&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.475125789642334, &quot;y&quot;: -4.032039165496826, &quot;IDs&quot;: &quot;ENSG00000178234&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.349310874938965, &quot;y&quot;: -3.6745898723602295, &quot;IDs&quot;: &quot;ENSG00000178343&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.983143329620361, &quot;y&quot;: -4.909096717834473, &quot;IDs&quot;: &quot;ENSG00000178397&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.518298149108887, &quot;y&quot;: -5.948455810546875, &quot;IDs&quot;: &quot;ENSG00000178585&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.530997276306152, &quot;y&quot;: -5.60761022567749, &quot;IDs&quot;: &quot;ENSG00000179152&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.712034702301025, &quot;y&quot;: -4.357678413391113, &quot;IDs&quot;: &quot;ENSG00000179299&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.018409729003906, &quot;y&quot;: -2.5854485034942627, &quot;IDs&quot;: &quot;ENSG00000179456&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.404248237609863, &quot;y&quot;: -3.091057538986206, &quot;IDs&quot;: &quot;ENSG00000181090&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.287126064300537, &quot;y&quot;: -6.124487400054932, &quot;IDs&quot;: &quot;ENSG00000181444&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.652234077453613, &quot;y&quot;: -4.600167274475098, &quot;IDs&quot;: &quot;ENSG00000181626&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.394786834716797, &quot;y&quot;: -5.718222618103027, &quot;IDs&quot;: &quot;ENSG00000181754&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.53479528427124, &quot;y&quot;: -4.433937072753906, &quot;IDs&quot;: &quot;ENSG00000182132&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.612569808959961, &quot;y&quot;: -3.1531617641448975, &quot;IDs&quot;: &quot;ENSG00000182272&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.808541297912598, &quot;y&quot;: -4.177156925201416, &quot;IDs&quot;: &quot;ENSG00000182606&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.248244285583496, &quot;y&quot;: -5.316575527191162, &quot;IDs&quot;: &quot;ENSG00000182667&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.755894660949707, &quot;y&quot;: -2.9667739868164062, &quot;IDs&quot;: &quot;ENSG00000182872&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.255119323730469, &quot;y&quot;: -5.506559371948242, &quot;IDs&quot;: &quot;ENSG00000182979&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.592403411865234, &quot;y&quot;: -4.486677169799805, &quot;IDs&quot;: &quot;ENSG00000183020&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.602937698364258, &quot;y&quot;: -3.039961099624634, &quot;IDs&quot;: &quot;ENSG00000183117&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.8846001625061035, &quot;y&quot;: -4.379117965698242, &quot;IDs&quot;: &quot;ENSG00000183137&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.124059677124023, &quot;y&quot;: -2.8375165462493896, &quot;IDs&quot;: &quot;ENSG00000183287&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.847286701202393, &quot;y&quot;: -4.22279167175293, &quot;IDs&quot;: &quot;ENSG00000183323&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.666767120361328, &quot;y&quot;: -2.923009157180786, &quot;IDs&quot;: &quot;ENSG00000183604&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.235496520996094, &quot;y&quot;: -5.93793249130249, &quot;IDs&quot;: &quot;ENSG00000183671&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.8654561042785645, &quot;y&quot;: -5.4545135498046875, &quot;IDs&quot;: &quot;ENSG00000183765&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.980269432067871, &quot;y&quot;: -4.409269332885742, &quot;IDs&quot;: &quot;ENSG00000183780&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.41433334350586, &quot;y&quot;: -4.1295247077941895, &quot;IDs&quot;: &quot;ENSG00000183826&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.430205345153809, &quot;y&quot;: -3.0462944507598877, &quot;IDs&quot;: &quot;ENSG00000183979&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.851016998291016, &quot;y&quot;: -3.712409734725952, &quot;IDs&quot;: &quot;ENSG00000184005&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.491238117218018, &quot;y&quot;: -7.024947166442871, &quot;IDs&quot;: &quot;ENSG00000184838&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.735073089599609, &quot;y&quot;: -6.438372611999512, &quot;IDs&quot;: &quot;ENSG00000185046&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.986348628997803, &quot;y&quot;: -3.7531394958496094, &quot;IDs&quot;: &quot;ENSG00000185049&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.504377365112305, &quot;y&quot;: -4.432455539703369, &quot;IDs&quot;: &quot;ENSG00000185361&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.116634368896484, &quot;y&quot;: -2.370471954345703, &quot;IDs&quot;: &quot;ENSG00000185480&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.830623626708984, &quot;y&quot;: -3.61684513092041, &quot;IDs&quot;: &quot;ENSG00000185745&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.713557243347168, &quot;y&quot;: -5.102473735809326, &quot;IDs&quot;: &quot;ENSG00000185760&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.945727825164795, &quot;y&quot;: -3.228151321411133, &quot;IDs&quot;: &quot;ENSG00000185880&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.887625694274902, &quot;y&quot;: -3.228847026824951, &quot;IDs&quot;: &quot;ENSG00000185989&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.816726684570312, &quot;y&quot;: -3.7606663703918457, &quot;IDs&quot;: &quot;ENSG00000186111&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.604522705078125, &quot;y&quot;: -3.5529284477233887, &quot;IDs&quot;: &quot;ENSG00000186132&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.805441856384277, &quot;y&quot;: -1.8758140802383423, &quot;IDs&quot;: &quot;ENSG00000186193&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.360256671905518, &quot;y&quot;: -3.6520378589630127, &quot;IDs&quot;: &quot;ENSG00000186314&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.679858207702637, &quot;y&quot;: -2.6624395847320557, &quot;IDs&quot;: &quot;ENSG00000186575&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.247370719909668, &quot;y&quot;: -2.998488664627075, &quot;IDs&quot;: &quot;ENSG00000186625&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.621292591094971, &quot;y&quot;: -5.020596981048584, &quot;IDs&quot;: &quot;ENSG00000186868&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.958524703979492, &quot;y&quot;: -2.156540632247925, &quot;IDs&quot;: &quot;ENSG00000187049&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.578660011291504, &quot;y&quot;: -3.7225492000579834, &quot;IDs&quot;: &quot;ENSG00000187624&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.545221328735352, &quot;y&quot;: -4.427896022796631, &quot;IDs&quot;: &quot;ENSG00000187951&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.899965763092041, &quot;y&quot;: -6.2490105628967285, &quot;IDs&quot;: &quot;ENSG00000188060&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.152007579803467, &quot;y&quot;: -6.880054473876953, &quot;IDs&quot;: &quot;ENSG00000188312&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.903242111206055, &quot;y&quot;: -3.5353355407714844, &quot;IDs&quot;: &quot;ENSG00000188486&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.194175720214844, &quot;y&quot;: -4.253551483154297, &quot;IDs&quot;: &quot;ENSG00000188610&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.4955573081970215, &quot;y&quot;: -4.830404281616211, &quot;IDs&quot;: &quot;ENSG00000188779&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.435949325561523, &quot;y&quot;: -4.866326808929443, &quot;IDs&quot;: &quot;ENSG00000188859&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.652802467346191, &quot;y&quot;: -5.0321125984191895, &quot;IDs&quot;: &quot;ENSG00000189319&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.351602077484131, &quot;y&quot;: -5.265768051147461, &quot;IDs&quot;: &quot;ENSG00000196263&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.035157203674316, &quot;y&quot;: -2.4824516773223877, &quot;IDs&quot;: &quot;ENSG00000196290&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.160486221313477, &quot;y&quot;: -3.6520323753356934, &quot;IDs&quot;: &quot;ENSG00000196363&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.89676570892334, &quot;y&quot;: -2.732367753982544, &quot;IDs&quot;: &quot;ENSG00000196367&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.528092384338379, &quot;y&quot;: -3.000788688659668, &quot;IDs&quot;: &quot;ENSG00000196437&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.9476318359375, &quot;y&quot;: -3.272946834564209, &quot;IDs&quot;: &quot;ENSG00000196498&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.660605430603027, &quot;y&quot;: -4.87228536605835, &quot;IDs&quot;: &quot;ENSG00000196550&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.5759663581848145, &quot;y&quot;: -6.044012069702148, &quot;IDs&quot;: &quot;ENSG00000196700&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.196858406066895, &quot;y&quot;: -2.479776620864868, &quot;IDs&quot;: &quot;ENSG00000196792&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.653708457946777, &quot;y&quot;: -5.4508466720581055, &quot;IDs&quot;: &quot;ENSG00000196814&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.431168079376221, &quot;y&quot;: -4.476589202880859, &quot;IDs&quot;: &quot;ENSG00000196867&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.656498432159424, &quot;y&quot;: -4.867131233215332, &quot;IDs&quot;: &quot;ENSG00000197020&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.04990291595459, &quot;y&quot;: -4.559820175170898, &quot;IDs&quot;: &quot;ENSG00000197050&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.34082317352295, &quot;y&quot;: -4.991097927093506, &quot;IDs&quot;: &quot;ENSG00000197056&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.190733909606934, &quot;y&quot;: -5.573420524597168, &quot;IDs&quot;: &quot;ENSG00000197226&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.675083160400391, &quot;y&quot;: -2.831953287124634, &quot;IDs&quot;: &quot;ENSG00000197381&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.027913570404053, &quot;y&quot;: -5.607682228088379, &quot;IDs&quot;: &quot;ENSG00000197465&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.37634801864624, &quot;y&quot;: -3.998342514038086, &quot;IDs&quot;: &quot;ENSG00000197619&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.860793590545654, &quot;y&quot;: -2.672442674636841, &quot;IDs&quot;: &quot;ENSG00000197808&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.703367710113525, &quot;y&quot;: -6.11300802230835, &quot;IDs&quot;: &quot;ENSG00000197822&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.90266752243042, &quot;y&quot;: -3.805706262588501, &quot;IDs&quot;: &quot;ENSG00000197951&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.6560468673706055, &quot;y&quot;: -2.955510139465332, &quot;IDs&quot;: &quot;ENSG00000198055&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.454113960266113, &quot;y&quot;: -5.133312225341797, &quot;IDs&quot;: &quot;ENSG00000198416&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.467326641082764, &quot;y&quot;: -2.116551399230957, &quot;IDs&quot;: &quot;ENSG00000198464&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.122802734375, &quot;y&quot;: -3.5349531173706055, &quot;IDs&quot;: &quot;ENSG00000198646&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.982313632965088, &quot;y&quot;: -5.782830238342285, &quot;IDs&quot;: &quot;ENSG00000198648&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.705625057220459, &quot;y&quot;: -4.012956142425537, &quot;IDs&quot;: &quot;ENSG00000198793&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.459918022155762, &quot;y&quot;: -5.357261657714844, &quot;IDs&quot;: &quot;ENSG00000198816&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.511296272277832, &quot;y&quot;: -4.389712810516357, &quot;IDs&quot;: &quot;ENSG00000198826&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.14870834350586, &quot;y&quot;: -3.3135592937469482, &quot;IDs&quot;: &quot;ENSG00000198919&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.487329483032227, &quot;y&quot;: -4.880194187164307, &quot;IDs&quot;: &quot;ENSG00000198964&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.975971221923828, &quot;y&quot;: -4.3716936111450195, &quot;IDs&quot;: &quot;ENSG00000199804&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.8119683265686035, &quot;y&quot;: -2.2668616771698, &quot;IDs&quot;: &quot;ENSG00000204366&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.817574501037598, &quot;y&quot;: -3.789205551147461, &quot;IDs&quot;: &quot;ENSG00000204371&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.999424457550049, &quot;y&quot;: -3.6544270515441895, &quot;IDs&quot;: &quot;ENSG00000204406&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.360063552856445, &quot;y&quot;: -2.7215240001678467, &quot;IDs&quot;: &quot;ENSG00000204469&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.535712718963623, &quot;y&quot;: -6.3530168533325195, &quot;IDs&quot;: &quot;ENSG00000204789&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.593419075012207, &quot;y&quot;: -2.335942268371582, &quot;IDs&quot;: &quot;ENSG00000204899&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.401444435119629, &quot;y&quot;: -5.765467643737793, &quot;IDs&quot;: &quot;ENSG00000205133&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.565091133117676, &quot;y&quot;: -3.475670576095581, &quot;IDs&quot;: &quot;ENSG00000205250&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 4.811858177185059, &quot;y&quot;: -6.730700969696045, &quot;IDs&quot;: &quot;ENSG00000205268&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.888308525085449, &quot;y&quot;: -5.542497158050537, &quot;IDs&quot;: &quot;ENSG00000205356&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.092231750488281, &quot;y&quot;: -3.582644462585449, &quot;IDs&quot;: &quot;ENSG00000205628&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.423491954803467, &quot;y&quot;: -4.851937770843506, &quot;IDs&quot;: &quot;ENSG00000205643&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.0711140632629395, &quot;y&quot;: -5.075706481933594, &quot;IDs&quot;: &quot;ENSG00000205726&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.620645523071289, &quot;y&quot;: -5.197574138641357, &quot;IDs&quot;: &quot;ENSG00000205746&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.865818977355957, &quot;y&quot;: -1.862945795059204, &quot;IDs&quot;: &quot;ENSG00000206932&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.271769523620605, &quot;y&quot;: -2.4197847843170166, &quot;IDs&quot;: &quot;ENSG00000207357&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.799346923828125, &quot;y&quot;: -2.9607808589935303, &quot;IDs&quot;: &quot;ENSG00000210144&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.764066696166992, &quot;y&quot;: -3.168314218521118, &quot;IDs&quot;: &quot;ENSG00000210151&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.456550598144531, &quot;y&quot;: -4.550705432891846, &quot;IDs&quot;: &quot;ENSG00000212978&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.955022811889648, &quot;y&quot;: -3.8988747596740723, &quot;IDs&quot;: &quot;ENSG00000213096&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.770491123199463, &quot;y&quot;: -3.030771017074585, &quot;IDs&quot;: &quot;ENSG00000214022&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.0436530113220215, &quot;y&quot;: -3.748297691345215, &quot;IDs&quot;: &quot;ENSG00000214517&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.846293926239014, &quot;y&quot;: -3.4995627403259277, &quot;IDs&quot;: &quot;ENSG00000214562&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.409006118774414, &quot;y&quot;: -4.213406085968018, &quot;IDs&quot;: &quot;ENSG00000214832&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.085351467132568, &quot;y&quot;: -5.549898624420166, &quot;IDs&quot;: &quot;ENSG00000214960&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.516647338867188, &quot;y&quot;: -2.0882272720336914, &quot;IDs&quot;: &quot;ENSG00000215421&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.144134521484375, &quot;y&quot;: -4.560175895690918, &quot;IDs&quot;: &quot;ENSG00000215424&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.74887752532959, &quot;y&quot;: -4.117579936981201, &quot;IDs&quot;: &quot;ENSG00000215630&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.943115234375, &quot;y&quot;: -4.681636810302734, &quot;IDs&quot;: &quot;ENSG00000215784&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.361822128295898, &quot;y&quot;: -4.904077529907227, &quot;IDs&quot;: &quot;ENSG00000217648&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.459107398986816, &quot;y&quot;: -4.159789085388184, &quot;IDs&quot;: &quot;ENSG00000220685&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.134822368621826, &quot;y&quot;: -5.228011608123779, &quot;IDs&quot;: &quot;ENSG00000221994&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.899341583251953, &quot;y&quot;: -3.123061180114746, &quot;IDs&quot;: &quot;ENSG00000222601&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.552696228027344, &quot;y&quot;: -3.4704599380493164, &quot;IDs&quot;: &quot;ENSG00000226318&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.82597017288208, &quot;y&quot;: -3.141894578933716, &quot;IDs&quot;: &quot;ENSG00000226979&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.216215133666992, &quot;y&quot;: -4.881819248199463, &quot;IDs&quot;: &quot;ENSG00000227082&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 2.8949239253997803, &quot;y&quot;: -4.7227044105529785, &quot;IDs&quot;: &quot;ENSG00000227110&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.57826042175293, &quot;y&quot;: -5.205301761627197, &quot;IDs&quot;: &quot;ENSG00000227827&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.945346355438232, &quot;y&quot;: -3.8165531158447266, &quot;IDs&quot;: &quot;ENSG00000228623&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.259196281433105, &quot;y&quot;: -3.8111183643341064, &quot;IDs&quot;: &quot;ENSG00000229816&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.590782165527344, &quot;y&quot;: -2.2699925899505615, &quot;IDs&quot;: &quot;ENSG00000231007&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.15330982208252, &quot;y&quot;: -5.526069641113281, &quot;IDs&quot;: &quot;ENSG00000233024&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.802594184875488, &quot;y&quot;: -2.5396108627319336, &quot;IDs&quot;: &quot;ENSG00000233514&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.010598659515381, &quot;y&quot;: -4.862634658813477, &quot;IDs&quot;: &quot;ENSG00000233932&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.712561130523682, &quot;y&quot;: -3.734769582748413, &quot;IDs&quot;: &quot;ENSG00000234129&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.62509298324585, &quot;y&quot;: -7.090021133422852, &quot;IDs&quot;: &quot;ENSG00000234684&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.815040588378906, &quot;y&quot;: -3.6630465984344482, &quot;IDs&quot;: &quot;ENSG00000235072&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.453699111938477, &quot;y&quot;: -1.9392255544662476, &quot;IDs&quot;: &quot;ENSG00000235499&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.485234260559082, &quot;y&quot;: -4.330435752868652, &quot;IDs&quot;: &quot;ENSG00000235748&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.320512294769287, &quot;y&quot;: -2.9882750511169434, &quot;IDs&quot;: &quot;ENSG00000236104&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.697983741760254, &quot;y&quot;: -5.323171615600586, &quot;IDs&quot;: &quot;ENSG00000236451&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.208590984344482, &quot;y&quot;: -5.3662848472595215, &quot;IDs&quot;: &quot;ENSG00000236889&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.216155052185059, &quot;y&quot;: -3.0685696601867676, &quot;IDs&quot;: &quot;ENSG00000237296&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.705272674560547, &quot;y&quot;: -3.739384889602661, &quot;IDs&quot;: &quot;ENSG00000239415&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.436420440673828, &quot;y&quot;: -2.359731674194336, &quot;IDs&quot;: &quot;ENSG00000242512&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.403121471405029, &quot;y&quot;: -6.355422496795654, &quot;IDs&quot;: &quot;ENSG00000242779&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.823832511901855, &quot;y&quot;: -4.076747894287109, &quot;IDs&quot;: &quot;ENSG00000243156&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.450141906738281, &quot;y&quot;: -3.308783769607544, &quot;IDs&quot;: &quot;ENSG00000244005&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.681346893310547, &quot;y&quot;: -2.2826783657073975, &quot;IDs&quot;: &quot;ENSG00000244588&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.643889904022217, &quot;y&quot;: -5.9678144454956055, &quot;IDs&quot;: &quot;ENSG00000245937&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.84442663192749, &quot;y&quot;: -5.885735034942627, &quot;IDs&quot;: &quot;ENSG00000247134&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.18661880493164, &quot;y&quot;: -4.243021488189697, &quot;IDs&quot;: &quot;ENSG00000247675&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.4410271644592285, &quot;y&quot;: -5.218124866485596, &quot;IDs&quot;: &quot;ENSG00000247796&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.678417205810547, &quot;y&quot;: -4.083173751831055, &quot;IDs&quot;: &quot;ENSG00000248008&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.95611572265625, &quot;y&quot;: -5.239173889160156, &quot;IDs&quot;: &quot;ENSG00000248663&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.883106708526611, &quot;y&quot;: -3.9980340003967285, &quot;IDs&quot;: &quot;ENSG00000248927&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.653732776641846, &quot;y&quot;: -3.1483845710754395, &quot;IDs&quot;: &quot;ENSG00000249279&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.32283878326416, &quot;y&quot;: -3.999166965484619, &quot;IDs&quot;: &quot;ENSG00000249456&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.05851411819458, &quot;y&quot;: -2.9585609436035156, &quot;IDs&quot;: &quot;ENSG00000249743&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.832164287567139, &quot;y&quot;: -4.298870086669922, &quot;IDs&quot;: &quot;ENSG00000249784&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.780041694641113, &quot;y&quot;: -5.004995822906494, &quot;IDs&quot;: &quot;ENSG00000250251&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.805826187133789, &quot;y&quot;: -2.8065216541290283, &quot;IDs&quot;: &quot;ENSG00000250474&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.011904716491699, &quot;y&quot;: -6.370607376098633, &quot;IDs&quot;: &quot;ENSG00000250510&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.133563041687012, &quot;y&quot;: -3.493112087249756, &quot;IDs&quot;: &quot;ENSG00000251031&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.674860954284668, &quot;y&quot;: -4.049509525299072, &quot;IDs&quot;: &quot;ENSG00000251485&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.436158180236816, &quot;y&quot;: -2.980848550796509, &quot;IDs&quot;: &quot;ENSG00000252835&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.646830558776855, &quot;y&quot;: -5.225025653839111, &quot;IDs&quot;: &quot;ENSG00000253301&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.7923383712768555, &quot;y&quot;: -2.5835299491882324, &quot;IDs&quot;: &quot;ENSG00000254186&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.680374145507812, &quot;y&quot;: -4.338692665100098, &quot;IDs&quot;: &quot;ENSG00000254302&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.498217582702637, &quot;y&quot;: -5.343571186065674, &quot;IDs&quot;: &quot;ENSG00000254681&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.408622741699219, &quot;y&quot;: -4.738345146179199, &quot;IDs&quot;: &quot;ENSG00000255394&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.164904594421387, &quot;y&quot;: -3.049901008605957, &quot;IDs&quot;: &quot;ENSG00000256663&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.380014419555664, &quot;y&quot;: -6.142073154449463, &quot;IDs&quot;: &quot;ENSG00000257038&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.226571083068848, &quot;y&quot;: -2.678884506225586, &quot;IDs&quot;: &quot;ENSG00000258101&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.5906343460083, &quot;y&quot;: -2.6736438274383545, &quot;IDs&quot;: &quot;ENSG00000258548&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.939472198486328, &quot;y&quot;: -6.223617076873779, &quot;IDs&quot;: &quot;ENSG00000259768&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.175765037536621, &quot;y&quot;: -2.6485373973846436, &quot;IDs&quot;: &quot;ENSG00000259933&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 2.9285340309143066, &quot;y&quot;: -1.6932373046875, &quot;IDs&quot;: &quot;ENSG00000260289&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.244904518127441, &quot;y&quot;: -5.322940826416016, &quot;IDs&quot;: &quot;ENSG00000260910&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.54971694946289, &quot;y&quot;: -3.4334490299224854, &quot;IDs&quot;: &quot;ENSG00000261056&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.377065658569336, &quot;y&quot;: -2.635098695755005, &quot;IDs&quot;: &quot;ENSG00000261691&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.843291282653809, &quot;y&quot;: -1.9897266626358032, &quot;IDs&quot;: &quot;ENSG00000261780&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.858924865722656, &quot;y&quot;: -3.6693344116210938, &quot;IDs&quot;: &quot;ENSG00000262979&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.659482955932617, &quot;y&quot;: -2.7835073471069336, &quot;IDs&quot;: &quot;ENSG00000263235&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.763474464416504, &quot;y&quot;: -4.823162078857422, &quot;IDs&quot;: &quot;ENSG00000263335&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.953834533691406, &quot;y&quot;: -4.621185779571533, &quot;IDs&quot;: &quot;ENSG00000263513&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.030684471130371, &quot;y&quot;: -5.312204837799072, &quot;IDs&quot;: &quot;ENSG00000264558&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.047229766845703, &quot;y&quot;: -2.8772776126861572, &quot;IDs&quot;: &quot;ENSG00000266028&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.543018341064453, &quot;y&quot;: -6.503960132598877, &quot;IDs&quot;: &quot;ENSG00000266265&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 10.27810001373291, &quot;y&quot;: -4.231157302856445, &quot;IDs&quot;: &quot;ENSG00000267201&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.115632057189941, &quot;y&quot;: -6.492725372314453, &quot;IDs&quot;: &quot;ENSG00000267374&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.36048698425293, &quot;y&quot;: -5.285416603088379, &quot;IDs&quot;: &quot;ENSG00000269404&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.078963756561279, &quot;y&quot;: -3.7202823162078857, &quot;IDs&quot;: &quot;ENSG00000270020&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.1109843254089355, &quot;y&quot;: -5.364681720733643, &quot;IDs&quot;: &quot;ENSG00000271781&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.966466903686523, &quot;y&quot;: -3.3860971927642822, &quot;IDs&quot;: &quot;ENSG00000271978&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.686329364776611, &quot;y&quot;: -1.9191389083862305, &quot;IDs&quot;: &quot;ENSG00000272055&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.907341957092285, &quot;y&quot;: -3.0341339111328125, &quot;IDs&quot;: &quot;ENSG00000272333&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.366622924804688, &quot;y&quot;: -3.459838390350342, &quot;IDs&quot;: &quot;ENSG00000272909&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.811796188354492, &quot;y&quot;: -2.8299949169158936, &quot;IDs&quot;: &quot;ENSG00000272975&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.698716640472412, &quot;y&quot;: -2.9575634002685547, &quot;IDs&quot;: &quot;ENSG00000273230&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.439016342163086, &quot;y&quot;: -5.339076042175293, &quot;IDs&quot;: &quot;ENSG00000273712&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.448746681213379, &quot;y&quot;: -2.475288152694702, &quot;IDs&quot;: &quot;ENSG00000274447&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5.95631217956543, &quot;y&quot;: -5.943505764007568, &quot;IDs&quot;: &quot;ENSG00000276023&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.576766967773438, &quot;y&quot;: -3.428398370742798, &quot;IDs&quot;: &quot;ENSG00000276043&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.08769416809082, &quot;y&quot;: -3.13020396232605, &quot;IDs&quot;: &quot;ENSG00000276234&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.935995101928711, &quot;y&quot;: -3.844437837600708, &quot;IDs&quot;: &quot;ENSG00000276293&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.572408676147461, &quot;y&quot;: -2.534992218017578, &quot;IDs&quot;: &quot;ENSG00000276517&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.406080722808838, &quot;y&quot;: -5.953656196594238, &quot;IDs&quot;: &quot;ENSG00000276644&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 8.30043888092041, &quot;y&quot;: -2.9745898246765137, &quot;IDs&quot;: &quot;ENSG00000277942&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7.319995403289795, &quot;y&quot;: -2.456691026687622, &quot;IDs&quot;: &quot;ENSG00000278834&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.420740127563477, &quot;y&quot;: -3.9548404216766357, &quot;IDs&quot;: &quot;ENSG00000279786&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.421271800994873, &quot;y&quot;: -4.550535202026367, &quot;IDs&quot;: &quot;ENSG00000280053&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.548964500427246, &quot;y&quot;: -5.05203914642334, &quot;IDs&quot;: &quot;ENSG00000280202&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 9.721089363098145, &quot;y&quot;: -2.3332509994506836, &quot;IDs&quot;: &quot;ENSG00000280206&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.872919082641602, &quot;y&quot;: -4.932167053222656, &quot;IDs&quot;: &quot;ENSG00000283154&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6.079103946685791, &quot;y&quot;: -4.619714736938477, &quot;IDs&quot;: &quot;ENSG00000285530&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}], &quot;type&quot;: &quot;scatter&quot;, &quot;color&quot;: &quot;#ff00ed&quot;, &quot;name&quot;: &quot;cluster_06&quot;}]; var dataLen = data.length; for (var ix = 0; ix &lt; dataLen; ix++) { chart.addSeries(data[ix]); } }); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt;\" height=850 width=1000></iframe>"
      ],
      "text/plain": [
       "<highcharts.highcharts.highcharts.Highchart at 0x7f9417157450>"
      ]
     },
     "execution_count": 11,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "mp.plot_scatter()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "7d5094d5-a2d7-4a61-8944-840263375d3a",
   "metadata": {},
   "source": [
    "### 02.grid plot"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 12,
   "id": "85bcb29c-34dc-4df1-8a90-ab15477e252e",
   "metadata": {},
   "outputs": [
    {
     "name": "stdout",
     "output_type": "stream",
     "text": [
      "2022-08-01 16:26:59,508 - \u001b[32mINFO\u001b[0m - [bidd-aggmap]\u001b[0m - generate file: ./feature points_5162_correlation_umap_mp\u001b[0m\n",
      "2022-08-01 16:26:59,530 - \u001b[32mINFO\u001b[0m - [bidd-aggmap]\u001b[0m - save html file to ./feature points_5162_correlation_umap_mp\u001b[0m\n"
     ]
    },
    {
     "data": {
      "text/html": [
       "<iframe style=\"border:0;outline:none;overflow:hidden\" srcdoc=\"&lt;!DOCTYPE html&gt; &lt;html lang=&quot;en&quot;&gt; &lt;head&gt; &lt;meta charset=&quot;utf-8&quot; /&gt; &lt;link href=&quot;https://www.highcharts.com/highslide/highslide.css&quot; rel=&quot;stylesheet&quot; /&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://code.highcharts.com/6/highcharts.js&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://code.highcharts.com/6/highcharts-more.js&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://code.highcharts.com/6/modules/heatmap.js&quot;&gt;&lt;/script&gt; &lt;script type=&quot;text/javascript&quot; src=&quot;https://code.highcharts.com/6/modules/exporting.js&quot;&gt;&lt;/script&gt; &lt;/head&gt; &lt;body style=&quot;margin:0;padding:0&quot;&gt; &lt;div id=&quot;container&quot; style=&quot;width:1000px;height:850px;&quot;&gt;Loading....&lt;/div&gt; &lt;script&gt; $(function(){ Highcharts.setOptions({&quot;global&quot;: {}, &quot;lang&quot;: {}}); var option = {&quot;chart&quot;: {&quot;renderTo&quot;: &quot;container&quot;, &quot;width&quot;: 1000, &quot;height&quot;: 850, &quot;type&quot;: &quot;heatmap&quot;, &quot;zoomType&quot;: &quot;xy&quot;}, &quot;colors&quot;: {}, &quot;credits&quot;: {&quot;enabled&quot;: false}, &quot;drilldown&quot;: {}, &quot;exporting&quot;: {}, &quot;labels&quot;: {}, &quot;legend&quot;: {&quot;align&quot;: &quot;right&quot;, &quot;layout&quot;: &quot;vertical&quot;, &quot;margin&quot;: 1, &quot;verticalAlign&quot;: &quot;top&quot;, &quot;y&quot;: 60, &quot;symbolHeight&quot;: 12, &quot;floating&quot;: false}, &quot;loading&quot;: {}, &quot;navigation&quot;: {}, &quot;pane&quot;: {}, &quot;plotOptions&quot;: {&quot;series&quot;: {&quot;turboThreshold&quot;: 5000, &quot;dataLabels&quot;: {&quot;enabled&quot;: false, &quot;format&quot;: &quot;{point.v}&quot;, &quot;style&quot;: {&quot;textOutline&quot;: false, &quot;color&quot;: &quot;black&quot;}}}}, &quot;series&quot;: {}, &quot;subtitle&quot;: {&quot;text&quot;: &quot;number of feature points: 5162, metric method: correlation&quot;}, &quot;title&quot;: {&quot;text&quot;: &quot;Assignment of feature points by umap emmbedding result&quot;}, &quot;tooltip&quot;: {&quot;headerFormat&quot;: &quot;&lt;b&gt;{series.name}&lt;/b&gt;&lt;br&gt;&quot;, &quot;pointFormat&quot;: &quot;{point.v}&quot;}, &quot;xAxis&quot;: {&quot;min&quot;: 0, &quot;max&quot;: 71, &quot;startOnTick&quot;: false, &quot;endOnTick&quot;: false, &quot;allowDecimals&quot;: false, &quot;labels&quot;: {&quot;style&quot;: {&quot;fontSize&quot;: 20}}}, &quot;yAxis&quot;: {&quot;title&quot;: {&quot;text&quot;: &quot; &quot;, &quot;style&quot;: {&quot;fontSize&quot;: 20}}, &quot;startOnTick&quot;: false, &quot;endOnTick&quot;: false, &quot;gridLineWidth&quot;: 0, &quot;reversed&quot;: true, &quot;min&quot;: 0, &quot;max&quot;: 71, &quot;allowDecimals&quot;: false, &quot;labels&quot;: {&quot;style&quot;: {&quot;fontSize&quot;: 20}}}}; var chart = new Highcharts.Chart(option); var data = [{&quot;data&quot;: [{&quot;x&quot;: 33, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000176700&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000255197&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000258487&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000251458&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000231969&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000259033&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000204361&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000158161&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000151131&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000279098&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000258559&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000196756&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000275029&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000279481&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000058673&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000117616&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000258400&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000251273&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000186652&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000172752&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000240441&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000223959&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000237330&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000207697&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000185900&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000225328&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000186469&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000258441&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000148737&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000271852&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000251598&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000238317&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000258553&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000255496&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000254579&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000164647&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000225813&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000256712&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000119737&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000276728&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000005483&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000285190&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000224032&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000258791&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000221184&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000216809&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000180479&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000167384&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000169550&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000178235&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000284697&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000164776&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000157540&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000230797&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000168404&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000201208&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000275120&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000226954&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000260643&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000067082&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000251791&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000270878&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000184564&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000279089&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000265452&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000281026&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000137185&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000006468&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000277170&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000135899&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000197714&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000134285&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000263126&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000276248&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000252481&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000104691&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000249026&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000259848&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000231023&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000243960&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000223773&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000259205&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000252050&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000272644&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000273568&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000251323&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000257594&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000229056&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000261596&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000124713&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000124789&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000182324&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000204514&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000251348&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000176593&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000275111&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000277352&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000248124&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000226380&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000160961&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000083814&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000183808&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000110852&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000169981&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000035115&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000197182&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000237013&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000175302&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000135111&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000099326&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000246363&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000198783&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000227698&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000206634&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000275854&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000262652&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000238578&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000118514&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000207721&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000279432&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000236184&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000213997&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000121406&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000273448&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000266589&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000178338&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000226396&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000270681&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000109133&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000227963&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000204256&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000249884&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000259540&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000189233&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000236255&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000143322&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000149948&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000113742&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000266897&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000160908&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000206603&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000267160&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000171617&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000281347&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000250992&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000165813&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000215154&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000228709&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000167981&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000163960&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000268279&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000171606&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000169282&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000101109&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000259984&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000189014&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000059769&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000197903&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000163735&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000187475&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000260948&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000188761&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000170100&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000229808&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000270190&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000232679&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000280046&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000170631&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000163513&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000227267&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000162711&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000198797&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000258997&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000182318&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000236120&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000169306&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000137494&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000143614&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000224680&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000255571&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000180957&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000160888&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000166819&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000177688&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000285531&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000257511&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000132467&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000284834&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000257681&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000073614&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000153922&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000163823&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000279528&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000100335&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000267904&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000173110&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000164080&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000160199&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000241280&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000248943&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000091409&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000268001&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000204524&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000120889&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000129315&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000222489&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000163877&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000120158&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000254207&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000189149&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000088826&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000204086&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000162775&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000177173&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000134987&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000100068&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000272936&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000073737&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000274105&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000229222&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000112297&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000253230&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000169548&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000196782&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000203335&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000179817&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000263366&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000232623&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000214875&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000138271&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000261051&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000251194&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000171940&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000177144&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000182308&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000196357&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000282988&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000273669&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000151612&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000187957&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000224255&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000152454&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000124635&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000180573&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000272573&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000125398&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000277945&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000178502&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000118515&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000248476&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000266357&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000224679&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000215388&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000230176&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000086696&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000087589&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000100985&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000057704&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000257576&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000126759&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000136881&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000213060&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000232638&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000249850&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000174136&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000125952&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000147050&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000231806&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000232445&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000241764&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000273319&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000275221&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000266910&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000277367&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000163577&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000259623&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000207973&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000041982&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000170989&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000285722&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000110841&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000277173&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000140030&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000120875&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000129654&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000198900&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000164076&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000273485&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000127334&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000179219&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000178965&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000230532&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000243854&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000137040&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000275714&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000186130&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000198815&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000257432&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000241749&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000265345&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000278889&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000225578&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000257453&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000255154&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000261468&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000170684&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000166394&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000162650&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000204876&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000010539&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000272335&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000269044&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000181222&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000268798&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000178209&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000223356&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000277157&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000238886&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000166670&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000173253&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000278384&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000279861&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000133124&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000158615&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000057657&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000257635&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000231565&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000189060&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000272123&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000254454&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000272072&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000277738&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000078142&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000112299&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000189320&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000279738&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000223692&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000133059&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000169242&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000249992&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000279608&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000273356&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000184897&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000202111&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000260186&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000237268&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000095951&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000276786&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000275092&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000238062&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000204993&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000180777&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000251129&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000269343&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000278576&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000284930&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000279138&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000230914&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000135241&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000165029&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000267504&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000163536&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000259994&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000198785&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000105732&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000279649&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000196345&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000215861&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000212724&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000203709&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000234776&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000196873&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000260190&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000132326&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000206337&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000279568&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000267328&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000145390&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000251441&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000166839&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000234912&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000174010&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000272081&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000183960&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000083817&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000272994&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000112245&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000240750&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000260064&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000261678&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000261079&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000261732&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000170881&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000197579&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000270069&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000250657&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000100036&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000136634&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000114739&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000143878&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000204421&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000175592&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000260105&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000185479&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000183779&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000196611&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000217128&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000224271&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000155846&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000164318&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000198298&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000117586&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000244346&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000207523&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000207445&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000117877&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000272468&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000215417&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000228606&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000057468&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000275084&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000233242&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000178229&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000267519&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000130544&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000122641&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000279164&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000251127&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000184588&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000204915&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000250072&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000271797&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000273056&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000224635&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000008294&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000185130&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000272842&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000149968&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000217159&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000158406&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000189369&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000109670&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000183354&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000137745&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000258891&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000182224&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000187678&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000273442&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000273989&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000274015&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000186174&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000140691&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000166133&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000214029&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000188295&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000271659&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000260060&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000278156&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000207280&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000004948&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000186810&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000090447&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000233491&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000105204&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000260302&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000182218&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000179935&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000164631&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000158373&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000066422&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000276966&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000140332&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000134954&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000232486&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000110060&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000101096&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000279584&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000277586&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000239218&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000231154&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000180530&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000143067&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000277423&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000203688&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000261409&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000188483&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000187801&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000142396&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000112365&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000253775&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000272518&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000171970&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000219470&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000196428&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000271784&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000103855&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000223760&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000167470&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000218109&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000138311&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000270036&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000224080&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000229419&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000260727&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000118997&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000276853&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000280010&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000197506&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000265462&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000184530&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000196417&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000237863&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000236956&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000105708&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000272630&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000256981&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000247626&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000185650&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000128564&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000207870&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000273328&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000059804&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000233757&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000224083&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000234999&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000198010&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000141337&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000164086&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000274997&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000239620&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000186019&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000224116&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000273489&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000154479&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000279691&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000227376&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000204611&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000235272&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000167377&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000188042&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000168298&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000008083&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000230450&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000283122&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000181467&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000101384&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000261324&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000197837&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000230002&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000217275&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000228485&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000132510&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000240498&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000124875&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000184012&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000117597&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000258099&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000237870&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000260966&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000147883&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000187193&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000284196&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000165702&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000175213&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000205485&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000233397&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000104951&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000248724&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000177182&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000148842&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000144550&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000251682&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000087074&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000130203&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000242599&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000139874&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000119953&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000279637&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000223547&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000242689&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000075429&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000215840&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000151014&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000223390&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000170961&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000176697&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000163399&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000197588&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000139289&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000185551&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000260686&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000275322&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000139549&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000132661&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000166450&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000260920&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000205830&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000018408&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000148841&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000077585&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000139890&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000115461&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000165527&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000240859&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000232956&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000163982&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000234290&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000168679&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000170458&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000269892&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000280287&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000108306&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000202078&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000116604&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000126368&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000130054&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000113580&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000087510&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000255409&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000271858&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000240288&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000157933&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000225206&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000211459&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000277224&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000272549&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000279133&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000260997&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000106080&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000177191&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000164626&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000139832&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000143333&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000163734&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000130749&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000156804&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000148926&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000226763&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000275401&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000147117&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000245954&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000240405&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000164167&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000232487&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000284753&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000198369&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000253307&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000185883&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000105856&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000127311&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000196747&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000179059&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000103056&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000101654&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000110848&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000164949&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000229124&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000279122&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000206448&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000233221&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000166170&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000275454&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000272056&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000233671&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000170419&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000228615&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000279962&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000240211&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000170385&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000167011&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000255248&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000229587&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000173334&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000144136&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000283740&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000261083&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000204460&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000283765&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000258813&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000020633&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000131016&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000087494&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000232301&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000071575&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000181449&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000177721&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000232891&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000228184&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000236643&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000166529&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000248461&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000150630&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000206633&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000261845&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000133639&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000178233&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000240668&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000246130&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000130711&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000153443&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000263750&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000261889&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000204519&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000279145&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000149798&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000215875&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000273449&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000198342&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000249345&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000253256&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000124217&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000228294&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000145107&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000269902&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000185022&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000251536&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000155090&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000179046&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000165621&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000124171&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000134531&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000272183&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000280453&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000273066&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000255498&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000141384&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000279583&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000205649&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000274267&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000140450&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000257548&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000101438&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000176318&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000178607&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000107338&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000187815&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000120833&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000228005&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000276259&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000248643&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000155265&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000139146&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000228124&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000004139&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000260862&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000125845&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000199787&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000109851&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000233542&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000198312&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000167173&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000163092&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000196664&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000243819&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000177875&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000169252&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000125772&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000134107&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000180596&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000115850&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000169908&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000261407&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000254791&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000107159&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000205927&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000230898&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000274021&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000246250&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000213638&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000131503&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000009724&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000213416&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000282100&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000175040&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000138166&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000259470&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000257052&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000152684&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000261441&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000241547&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000268670&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000215156&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000274649&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000241684&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000186352&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000198841&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000178409&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000267192&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000232519&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000221949&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000213144&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000196724&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000232040&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000178462&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000174276&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000215120&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000280219&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000100505&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000232044&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000251023&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000142867&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000253632&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000253276&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000273703&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000269586&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000208037&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000240695&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000278828&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000254094&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000276603&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000201470&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000163661&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000043039&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000273820&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000197483&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000118503&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000245904&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000256128&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000268095&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000182810&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000234981&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000171044&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000083093&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000279667&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000272267&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000274104&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000231177&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000125538&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000165606&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000162413&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000019991&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000185730&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000273381&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000116819&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000275859&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000182816&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000077044&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000176125&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000273387&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000273204&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000165355&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000267493&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000241313&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000279696&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000164853&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000230359&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000177103&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000196781&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000253399&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000231681&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000253218&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000184678&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000230581&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000136158&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000270426&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000132872&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000240964&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000279253&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000273893&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000234219&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000165572&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000274943&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000272610&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000283204&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000163216&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000113369&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000232810&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000131080&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000267405&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000186446&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000278743&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000259993&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000269486&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000259826&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000197780&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000184937&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000034152&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000213923&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000273680&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000196189&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000214093&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000181274&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000206921&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000237499&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000264235&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000273143&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000261618&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000128591&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000100290&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000163449&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000277013&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000197238&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000259706&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000136997&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000177707&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000239474&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000225973&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000248503&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000249637&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000160679&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000179094&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000276564&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000163376&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000223461&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000250853&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000260493&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000263823&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000238129&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000228527&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000231721&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000263069&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000279048&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000240889&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000272157&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000272812&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000102554&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000198576&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000135625&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000285976&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000253993&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000172201&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000183154&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000204625&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000160712&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000276573&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000116285&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000253633&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000119938&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000202358&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000163638&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000179542&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000161940&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000284391&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000273542&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000202515&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000261582&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000273742&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000198300&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000258957&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000228158&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000241269&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000165914&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000119669&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000183161&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000259581&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000255150&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000255112&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000272906&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000275894&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000226652&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000006652&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000230955&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000170367&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000173451&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000188167&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000225448&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000271870&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000186230&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000225213&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000075426&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000207725&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000273729&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000119508&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000132669&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000179674&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000261220&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000125968&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000169429&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000277342&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000104419&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000274911&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000126391&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000108001&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000198835&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000170500&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000124882&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000249378&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000257285&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000125740&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000283566&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000235631&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000274290&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000242020&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000196787&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000265417&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000107485&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000119866&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000237892&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000269906&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000271147&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000178573&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000273394&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000102804&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000037965&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000198975&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000236296&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000261428&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000171451&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000100292&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000175984&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000172216&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000232202&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000260211&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000278058&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000128594&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000164951&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000169297&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000185610&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000226767&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000180257&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000241112&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000272384&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000170561&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000258725&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000178695&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000023445&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000273106&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000144655&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000175426&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000188910&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000111252&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000176907&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000259780&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000235529&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000213453&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000261117&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000178404&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000257954&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000166886&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000234492&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000280231&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000241157&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000144560&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000254905&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000145632&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000100906&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000255847&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000215474&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000183778&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000272910&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000237531&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000212916&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000196418&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000204186&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000275693&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000163961&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000174206&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000136866&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000255690&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000150991&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000178150&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000112175&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000137331&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000251141&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000197647&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000124743&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000248370&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000130489&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000206573&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000115008&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000163492&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000173875&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000117318&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000258655&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000167034&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000134070&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000226828&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000113163&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000108175&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000230922&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000285641&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000281756&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000223599&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000207971&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000277462&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000022355&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000267497&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000228672&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000281912&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000139438&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000125798&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000119986&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000164442&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000269296&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000048052&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000273320&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000282164&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000272159&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000188033&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000196152&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000247092&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000231940&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000124659&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000272758&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000241361&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000201085&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000258038&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000177283&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000269559&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000141682&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000276900&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000279349&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000143842&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000267757&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000178636&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000217801&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000270175&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000227258&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000274286&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000118985&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000162692&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000163219&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000167074&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000126550&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000153234&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000230071&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000107859&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000178977&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000256843&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000271127&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000270194&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000127152&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000275896&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000254550&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000176399&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000238286&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000272008&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000177606&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000262119&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000162951&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000254916&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000261526&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000249926&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000246350&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000204438&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000232303&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000263826&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000269939&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000275708&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000116717&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000182405&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000233028&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000111262&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000151883&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000005073&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000240476&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000086619&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000054598&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000143867&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000095739&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000271614&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000150907&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000186222&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000237149&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000168143&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000163874&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000128342&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000117525&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000056558&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000004799&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000247993&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000237788&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000259630&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000201581&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000268536&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000143507&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000266501&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000242853&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000276058&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000203435&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000260101&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000267254&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000259200&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000185920&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000239389&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000235651&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000260806&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000273063&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000226581&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000237605&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000164116&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000168264&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000135974&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000251226&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000138386&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000257599&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000274184&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000235618&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000187601&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000227210&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000137558&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000279613&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000150347&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000237436&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000228192&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000254530&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000131759&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000171873&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000224675&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000173237&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000112149&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000164400&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000271856&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000104856&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000010671&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000277589&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000279092&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000273084&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000229473&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000255836&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000234737&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000270640&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000249661&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000254615&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000278022&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000260350&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000143199&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000175197&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000113916&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000256341&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000174004&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000227379&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000244485&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000100739&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000258599&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000179774&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000272525&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000165507&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000279865&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000230844&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000090776&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000230987&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000227910&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000070444&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000196277&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000272677&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000276524&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000198807&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000180660&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000233117&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000285278&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000111837&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000170786&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000119138&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000182253&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000089116&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000123358&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000171223&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000156273&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000162367&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000109321&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000166592&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000146232&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000285844&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000279685&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000276180&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000258469&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000242474&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000152661&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000273797&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000260708&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000114796&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000273711&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000213232&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000272368&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000152409&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000251867&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000274712&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000283696&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000235026&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000272686&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000187479&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000179348&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000274828&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000253616&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000277693&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000171368&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000272716&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000119042&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000112773&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000197019&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000224109&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000273888&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000164849&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000260526&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000218819&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000099954&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000139946&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000165312&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000184371&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000231233&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000259877&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000122877&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000162407&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000270638&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000274425&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000198945&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000164794&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000158050&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000049130&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000124145&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000150783&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000116741&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000185112&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000215284&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000137449&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000215105&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000263612&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000258789&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000273355&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000233614&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000275055&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000170191&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000147509&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000153721&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000285410&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000100297&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000198961&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000254547&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000076248&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000111877&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000203877&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000168772&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000164128&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000180447&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000164463&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000120690&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000123095&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000233230&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000233325&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000230149&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000145911&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000107731&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000260339&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000168806&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000163545&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000259172&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000003436&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000114423&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000081189&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000157502&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000231290&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000226833&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000135604&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000272551&quot;, &quot;Subtypes&quot;: &quot;cluster_01&quot;, &quot;colors&quot;: &quot;#ffd500&quot;}], &quot;type&quot;: &quot;heatmap&quot;, &quot;color&quot;: &quot;#ffd500&quot;, &quot;name&quot;: &quot;cluster_01&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 1, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000183454&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000250271&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000127124&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000123119&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000182674&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000272702&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000145198&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000103150&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000259672&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000243008&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000137809&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000070748&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000229334&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000028137&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000279770&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000272636&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000139865&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000188389&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000120251&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000143816&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000182986&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000137707&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000258794&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000285244&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000146648&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000275393&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000137672&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000227308&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000214146&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000173838&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000058404&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000134955&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000153233&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000125850&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000204950&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000154764&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000163347&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000267685&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000162804&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000109956&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000117228&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000225339&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000181409&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000173391&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000225450&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000174514&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000244376&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000115616&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000141622&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000266074&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000203804&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000129521&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000233845&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000228775&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000075388&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000171303&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000155324&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000258450&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000128645&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000173295&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000187513&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000174945&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000198947&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000113721&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000113263&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000255317&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000130751&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000244300&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000183876&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000229191&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000134259&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000173641&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000146192&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000171189&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000214514&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000135925&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000136052&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000219438&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000101134&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000141750&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000105538&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000162426&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000274653&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000261594&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000148734&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000269976&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000226125&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000259727&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000111859&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000205809&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000168334&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000228323&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000138685&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000124143&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000231274&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000170915&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000128254&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000133019&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000172738&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000258279&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000229848&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000188850&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000184384&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000280587&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000231346&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000267052&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000038427&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000202314&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000165794&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000172382&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000171766&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000228022&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000182389&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000159784&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000100302&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000279118&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000183092&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000154783&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000227036&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000278973&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000049769&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000010310&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000253584&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000160838&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000253282&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000267733&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000232611&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000136869&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000213513&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000206897&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000125347&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000171604&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000176845&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000285802&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000260267&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000234859&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000184058&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000225614&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000261055&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000124508&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000267056&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000227619&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000239590&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000254632&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000257176&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000110777&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000226798&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000175841&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000279075&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000212493&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000130066&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000242615&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000106366&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000121039&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000211455&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000145002&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000267736&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000168398&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000124212&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000263731&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000205632&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000136383&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000165168&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000226673&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000279633&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000196979&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000197106&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000172508&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000270607&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000214331&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000111696&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000273345&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000269929&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000162695&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000132464&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000261308&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000162078&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000100311&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000186523&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000253958&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000261116&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000259230&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000186765&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000187135&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000225670&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000188064&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000253106&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000244945&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000186994&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000163995&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000142623&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000231948&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000129451&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000260830&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000145817&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000120942&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000215354&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000198018&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000134363&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000275302&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000257839&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000267375&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000099625&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000187595&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000261068&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000101670&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000256694&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000182489&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000276527&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000182795&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000254038&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000147443&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000165816&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000134817&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000171903&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000262454&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000260742&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000199023&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000197208&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000125618&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000246308&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000106003&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000105509&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000279879&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000225968&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000234362&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000204099&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000179292&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000225335&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000230650&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000205913&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000160472&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000236094&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000146005&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000254431&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000233424&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000283265&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000234832&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000151952&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000251600&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000180616&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000049249&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000181856&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000125089&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000239332&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000235927&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000236056&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000159251&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000237864&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000269275&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000184984&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000108405&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000172460&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000259523&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000260807&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000260219&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000282849&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000178562&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000140941&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000221044&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000229107&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000250365&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000259820&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000172995&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000178726&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000113070&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000188015&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000175920&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000198081&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000136297&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000261888&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000261029&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000258137&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000260903&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000183822&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000224596&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000169330&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000284713&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000261371&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000155926&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000033100&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000265019&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000254229&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000187626&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000149054&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000229915&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000254887&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000236963&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000248996&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000279489&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000100368&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000103710&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000129514&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000243225&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000259354&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000153707&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000180613&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000051108&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000173227&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000233817&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000253686&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000276308&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000236519&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000254400&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000126353&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000259712&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000180044&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000165449&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000228714&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000258602&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000174600&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000215014&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000100341&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000279806&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000163053&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000237879&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000277893&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000171954&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000268945&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000251442&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000179930&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000019549&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000272825&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000006062&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000006459&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000169991&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000281832&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000273108&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000260504&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000167487&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000238290&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000261150&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000256540&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000244242&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000076356&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000226921&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000229647&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000102096&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000227053&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000135373&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000284052&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000196378&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000271474&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000170439&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000249237&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000285888&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000275880&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000248150&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000255398&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000142609&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000149633&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000176595&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000118922&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000187902&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000176170&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000281207&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000285525&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000227777&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000272086&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000197044&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000285116&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000100483&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000125084&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000070915&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000278195&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000117560&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000277406&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000064692&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000223669&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000228705&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000112033&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000197191&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000162873&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000274292&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000146242&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000231701&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000231441&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000267316&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000205177&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000277632&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000275367&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000272259&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000256268&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000005513&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000249526&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000204131&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000103196&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000254842&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000231672&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000279476&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000268635&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000274598&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000136244&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000162975&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000156453&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000137962&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000165970&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000285980&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000184185&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000272079&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000261651&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000108688&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000278989&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000135517&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000162783&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000271361&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000134339&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000227507&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000168421&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000267801&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000116329&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000079277&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000226968&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000144130&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000127954&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000279631&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000125735&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000112139&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000070808&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000250240&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000236581&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000274340&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000083812&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000162892&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000167178&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000283025&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000214822&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000077238&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000260139&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000235947&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000161594&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000159289&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000175463&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000259687&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000275108&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000091010&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000008516&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000180535&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000203782&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000095752&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000205890&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000165478&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000285881&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000233581&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000279739&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000167984&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000181634&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000262769&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000277718&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000246145&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000255750&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000164484&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000283267&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000256196&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000265148&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000103888&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000187908&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000189223&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000185477&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000136286&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000101292&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000125637&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000168621&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000144834&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000167210&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000153531&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000272841&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000121797&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000131737&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000124762&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000171488&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000138623&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000185634&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000236782&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000133116&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000234703&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000280143&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000273812&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000140478&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000019186&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000137078&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000142511&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000169851&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000138347&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000205215&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000258303&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000081059&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000213937&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000171847&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000226377&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000137094&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000145040&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000181649&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000167874&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000163082&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000285867&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000188886&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000131435&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000163932&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000132334&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000214856&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000237624&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000283632&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000131738&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000155897&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000285623&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000279838&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000163497&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000213344&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000267475&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000108691&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000268543&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000165685&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000237015&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000233128&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000115665&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000115956&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000131746&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000010030&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000270096&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000231090&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000108932&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000228216&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000100628&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000230838&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000131885&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000169508&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000186831&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000231645&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000240541&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000027869&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000028277&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000228140&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000276953&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000110944&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000272622&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000113578&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000253628&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000077150&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000227300&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000260328&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000215186&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000170846&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000159167&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000177238&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000132481&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000248323&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000253161&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000111537&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000136689&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000167772&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000254396&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000134668&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000285966&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000198771&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000234155&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000222047&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000233198&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000189433&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000175746&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000005381&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000135913&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000228412&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000117152&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000236013&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000231714&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000234814&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000283033&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000006059&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000107984&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000204610&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000115009&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000232783&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000006210&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000215296&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000277734&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000100055&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000225611&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000203446&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000253182&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000175857&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000198574&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000197632&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000108342&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000124479&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000163814&quot;, &quot;Subtypes&quot;: &quot;cluster_02&quot;, &quot;colors&quot;: &quot;#4fff00&quot;}], &quot;type&quot;: &quot;heatmap&quot;, &quot;color&quot;: &quot;#4fff00&quot;, &quot;name&quot;: &quot;cluster_02&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 0, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000213658&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000223720&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000249849&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000251011&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000204946&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000103740&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000267614&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000146469&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000087303&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000253522&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000231131&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000198848&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000251623&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000251655&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000254166&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000198062&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000146166&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000069122&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000019169&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000181577&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000178217&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000248596&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000204677&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000163207&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000107249&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000185186&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000137877&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000226057&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000099937&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000187537&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000223564&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000143473&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000105737&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000047936&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000272505&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000143190&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000255363&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000147689&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000225418&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000181333&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000105929&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000186529&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000147206&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000175063&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000235890&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000224505&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000206712&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000196593&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000152592&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000232502&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000188107&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000137959&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000123610&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000101850&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000182230&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000162591&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000120279&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000165799&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000163131&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000239402&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000088340&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000241634&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000172575&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000197989&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000105443&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000114270&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000248362&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000235703&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000229425&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000229375&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000091136&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000203875&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000182168&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000156920&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000283879&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000101197&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000266924&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000260296&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000131747&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000253669&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000251179&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000166250&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000214049&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000230666&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000138755&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000243978&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000019582&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000259939&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000273588&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000283180&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000205592&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000167676&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000198963&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000285873&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000133624&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000254815&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000139679&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000244468&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000080166&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000115705&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000273777&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000215788&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000237639&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000264006&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000138435&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000271533&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000183397&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000148824&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000167355&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000197774&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000241404&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000224027&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000237055&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000166351&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000204434&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000138615&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000265112&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000204936&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000214815&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000277883&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000147437&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000221539&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000205702&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000265800&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000165124&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000228727&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000204410&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000230471&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000188778&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000235571&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000267686&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000117148&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000271862&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000196739&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000187583&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000280543&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000123496&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000237094&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000280279&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000261373&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000101276&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000261971&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000162004&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000249898&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000126010&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000241671&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000283235&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000172824&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000100453&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000132932&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000101333&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000248458&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000170006&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000280347&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000255364&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000115085&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000224975&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000237200&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000172432&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000261599&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000184465&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000145428&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000229089&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000129538&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000248112&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000183023&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000249867&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000170540&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000263786&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000183729&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000149503&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000255587&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000259878&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000148288&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000042832&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000202566&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000078098&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000206530&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000215769&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000100197&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000139508&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000243811&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000223831&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000207392&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000254676&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000271021&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000247157&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000185924&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000207034&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000222881&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000281344&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000110723&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000253888&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000262663&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000268108&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000144644&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000261949&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000176771&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000251562&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000081148&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000269954&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000199530&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000146859&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000269938&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000219747&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000229401&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000196460&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000170925&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000007314&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000163518&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000231298&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000248587&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000236780&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000223756&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000187689&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000236261&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000254606&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000120075&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000109046&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000135502&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000284630&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000279712&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000275560&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000156687&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000170703&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000214357&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000164796&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000265843&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000162415&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000116652&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000120256&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000235500&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000200879&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000110077&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000158486&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000144285&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000266743&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000258859&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000270000&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000177426&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000260062&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000232732&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000203923&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000260648&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000259005&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000130653&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000100147&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000230333&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000279066&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000171405&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000189423&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000130055&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000280734&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000169964&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000100429&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000073734&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000285648&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000238035&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000283064&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000268499&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000182481&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000224099&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000181800&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000140534&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000197415&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000274461&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000225447&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000228107&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000234996&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000196562&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000261534&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000162779&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000258733&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000138161&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000268287&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000168918&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000213918&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000111846&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000184635&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000256650&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000248858&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000250371&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000187721&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000197046&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000075223&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000234741&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000160963&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000162063&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000236039&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000111665&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000152689&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000204177&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000139364&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000214081&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000129991&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000166104&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000226450&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000253476&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000213793&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000225420&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000126785&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000165495&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000183785&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000250067&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000254535&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000052344&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000273373&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000225096&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000166801&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000260158&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000273802&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000236345&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000091879&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000131398&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000254226&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000174125&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000227398&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000280136&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000171483&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000273007&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000279688&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000282815&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000172901&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000228252&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000136231&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000242294&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000261123&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000172073&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000183251&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000213928&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000277072&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000207554&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000285730&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000275318&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000185615&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000264188&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000249650&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000117010&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000189348&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000205420&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000071991&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000179111&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000081320&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000133110&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000259732&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000285943&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000173230&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000206846&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000284656&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000283578&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000235081&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000102908&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000236953&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000272918&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000181085&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000100918&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000261744&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000274602&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000267648&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000230590&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000174353&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000227014&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000270108&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000239827&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000234771&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000185432&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000226480&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000188981&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000164266&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000205212&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000183206&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000271425&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000265766&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000101447&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000237548&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000204388&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000204389&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000153253&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000284837&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000224566&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000240927&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000091536&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000110031&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000224763&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000121716&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000171295&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000268201&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000188039&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000264349&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000119917&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000205583&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000271795&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000280228&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000243708&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000188277&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000279030&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000121931&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000135747&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000163694&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000189326&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000280639&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000104059&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000170044&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000228793&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000250787&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000242588&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000173597&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000227045&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000257803&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000264743&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000259868&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000152583&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000283200&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000274238&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000196143&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000108511&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000278959&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000201544&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000238390&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000277728&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000233585&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000142632&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000264334&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000255176&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000270165&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000186204&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000240996&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000160401&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000117139&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000285534&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000154451&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000260896&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000176136&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000174844&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000273096&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000109920&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000255227&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000269974&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000279812&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000229771&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000257662&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000095059&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000149328&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000248936&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000237950&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000206601&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000158352&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000270015&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000162222&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000272574&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000204287&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000237152&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000259254&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000203896&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000172771&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000270012&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000283311&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000163806&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000229657&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000271395&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000270629&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000254206&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000271383&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000140451&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000227706&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000203645&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000184374&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000254526&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000258077&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000164309&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000139151&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000279998&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000112137&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000230869&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000259659&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000280184&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000276934&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000137098&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000244301&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000243679&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000138079&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000197608&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000187240&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000243289&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000163611&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000256651&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000219395&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000174483&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000172350&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000274776&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000249855&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000131018&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000164283&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000114857&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000197279&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000254687&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000243302&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000131203&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000197580&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000274750&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000284946&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000174123&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000230715&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000125810&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000134186&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000239948&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000215158&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000272054&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000265145&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000241362&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000224709&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000227954&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000249857&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000129749&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000273353&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000269821&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000172748&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000280069&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000266777&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000201579&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000120868&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000188738&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000213085&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000257475&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000105851&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000230498&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000081692&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000164048&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000267041&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000114805&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000253503&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000248527&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000166483&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000265233&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000233602&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000204248&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000231431&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000271590&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000241120&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000144214&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000271209&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000272034&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000200090&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000236047&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000277297&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000145241&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000281183&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000254463&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000089163&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000238083&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000260751&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000213185&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000255234&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000166343&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000163297&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000066923&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000188234&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000111203&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000198590&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000143479&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000224967&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000214866&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000212452&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000182310&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000251768&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000268333&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000201302&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000207234&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000268896&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000278861&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000259158&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000240731&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000260144&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000256667&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000270704&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000259767&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000214954&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000254165&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000258027&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000244167&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 0, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000178440&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000125266&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000256615&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000231587&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000269699&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000176896&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000255644&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000279191&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000280063&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000279676&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000284977&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000271347&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000206754&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000258682&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000169914&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000162419&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000231125&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000258674&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000151006&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000276115&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000247627&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000201217&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000224723&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000254577&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000187987&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000229325&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000252690&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000133250&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000238835&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000171094&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000067208&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000259807&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000136535&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000228201&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000139668&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000101138&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000222345&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000261560&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000212371&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000257243&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000252311&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000274391&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000259562&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000213073&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000274297&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000078237&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000214652&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000233515&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000228817&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000257315&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000252498&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000199237&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000230551&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000279794&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000266236&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000279192&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000255423&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000273973&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000100100&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000253636&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000281398&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000172667&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000257621&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000198466&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000257246&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000120071&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000274422&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000101638&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000261659&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000206885&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000203756&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000197961&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000264425&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000117707&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000265480&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000165490&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000267598&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000285721&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000100784&quot;, &quot;Subtypes&quot;: &quot;cluster_03&quot;, &quot;colors&quot;: &quot;#00ff86&quot;}], &quot;type&quot;: &quot;heatmap&quot;, &quot;color&quot;: &quot;#00ff86&quot;, &quot;name&quot;: &quot;cluster_03&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 0, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000231574&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000242419&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000277112&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000204128&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000169918&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000197852&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000166816&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000285699&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000230521&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000205213&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000221887&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000204583&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000169083&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000126246&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000225595&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000189057&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000129159&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000260584&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000268324&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000256321&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000136352&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000173262&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000273212&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000253671&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000251287&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000130876&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000151838&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000112812&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000163633&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000082438&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000175318&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000239556&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000075891&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000105711&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000003400&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000223745&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000083067&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000259209&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000246877&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000147852&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000234754&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000189366&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000165731&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000197444&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000014138&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000152779&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000115902&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000036672&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000153930&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000056736&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000250903&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000223343&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000070669&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000068615&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000078900&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000132854&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000231584&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000235280&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000065609&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000101489&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000144227&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000211584&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000226374&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000243244&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000188906&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000163285&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000173926&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000266970&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000171126&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000101412&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000213160&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 1, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000186272&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000128965&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000262209&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000106689&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000259719&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000261039&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000198003&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000228142&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000253508&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000267666&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000254718&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000260198&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000271200&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000275613&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000033627&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000231437&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000232065&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000163406&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000235688&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000259954&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000228561&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000275902&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000214894&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000226091&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000278535&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000253554&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000167964&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000272894&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000188338&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000196169&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000196196&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000234062&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000256083&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000267016&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000154545&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000162496&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000129988&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000111181&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000134986&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000167995&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000184788&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000241935&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000284634&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000269226&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000145861&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000117600&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000278817&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000154330&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000147003&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000179029&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000171105&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000178947&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000162687&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000241163&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000230316&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000152672&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000004846&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000250016&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000159259&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000184916&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000108684&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000108823&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000161992&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000251539&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000235897&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000235257&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000272523&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000144485&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000228203&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000119640&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 2, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000257913&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000128573&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000229539&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000279726&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000232471&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000249092&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000215838&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000214335&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000280079&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000183615&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000260793&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000234709&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000166145&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000188747&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000272916&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000285589&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000230870&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000284543&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000271646&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000033122&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000248019&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000255284&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000176912&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000234936&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000226620&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000103522&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000225177&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000277287&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000269609&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000040608&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000182902&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000237310&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000151882&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000232815&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000254560&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000148483&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000092421&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000253819&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000260604&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000013392&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000221963&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000245571&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000232480&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000175643&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000258986&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000267191&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000077092&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000150637&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000275552&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000263597&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000154274&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000112964&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000229558&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000278023&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000259065&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000184979&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000261210&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000173930&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000253210&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000168792&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000142149&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000083290&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000226053&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000246889&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000132164&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000271335&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000105173&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000183578&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000221821&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 2, &quot;v&quot;: &quot;ENSG00000100167&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000269815&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000158813&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000279803&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000246375&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000275542&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000172687&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000137310&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000167216&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000269842&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000251455&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000232940&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000225032&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000261054&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000166448&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000284606&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000267199&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000053108&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000125965&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000065357&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000285205&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000163864&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000275807&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000273253&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000256742&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000145779&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000119943&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000266903&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000251136&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000249267&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000285799&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000274767&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000148408&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000173157&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000107562&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000206052&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000139910&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000184454&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000232645&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000229221&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000182916&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000064989&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000222020&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000167191&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000123201&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000213145&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000230027&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000205334&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000281358&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000253417&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000156689&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000137834&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000171777&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000157152&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000226386&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000214776&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000187068&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000215045&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000149636&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000254839&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000138346&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000226508&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000224046&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000100027&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000166402&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000198354&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000229292&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000146733&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000261040&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 3, &quot;v&quot;: &quot;ENSG00000250159&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 4, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000178162&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000279479&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000276118&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000265982&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000250546&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000227964&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000133475&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000180871&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000260949&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000272854&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000134574&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000261959&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000256331&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000132879&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000227268&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000226468&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000277152&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000224050&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000206579&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000250571&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000259969&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000102678&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000223382&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000158220&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000260777&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000238107&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000264964&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000005469&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000115267&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000172345&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000229178&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000248334&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000229589&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000273211&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000265750&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000116785&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000226696&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000232093&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000247317&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000116035&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000258545&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000242259&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000018625&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000089041&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000175305&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000276505&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000246465&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000197705&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000227825&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000116031&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000235269&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000250012&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000244509&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000151692&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000108387&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000065413&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000136867&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000115392&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000085741&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000255129&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000182165&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000186479&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000273362&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000186283&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000271947&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000007171&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000281566&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 4, &quot;v&quot;: &quot;ENSG00000165152&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000255559&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000204314&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000263412&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000141854&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000247373&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000157873&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000233429&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000275484&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000229356&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000227495&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000244558&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000198555&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000269097&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000255142&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000283982&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000109758&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000232716&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000153291&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000235194&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000166473&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000228126&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000214694&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000259834&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000230658&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000130517&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000225138&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000248932&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000260650&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000255121&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000146233&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000225411&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000251637&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000258053&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000266983&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000185495&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000130522&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000102981&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000260442&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000131669&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000030419&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000197769&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000168779&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000271387&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000110693&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000074966&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000270977&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000233912&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000234235&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000236947&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000267886&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000165325&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000233654&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000114698&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000248215&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000224905&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000088053&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000104093&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000109265&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000234327&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000101445&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000100557&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000247271&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000253771&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000250320&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000176046&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000106823&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000143630&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000269959&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000279742&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000249476&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000259744&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000276141&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000269997&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000279511&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000230177&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000284719&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000273141&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000221792&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000189195&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000177595&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000172403&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000133247&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000278041&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000272674&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000262877&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000279924&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000188523&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000135917&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000264672&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000268926&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000188993&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000223396&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000233006&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000239521&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000125910&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000231079&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000128652&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000138030&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000269068&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000243224&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000145864&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000250786&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000176641&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000229422&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000179571&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000173208&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000176714&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000279561&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000213801&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000247516&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000137393&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000109458&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000235545&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000227811&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000143105&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000271584&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000229153&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000196132&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000141449&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000147246&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000182175&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000172594&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000224152&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000245213&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000229743&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000196566&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000260798&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000174951&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000247121&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000066735&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000251364&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 6, &quot;v&quot;: &quot;ENSG00000181350&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000170827&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000274928&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000272374&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000231439&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000243137&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000102984&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000213542&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000188785&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000267272&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000232874&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000206567&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000259315&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000237849&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000285886&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000280798&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000261360&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000267080&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000204666&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000238113&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000167103&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000158156&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000279873&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000273129&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000135063&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000271855&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000233435&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000273196&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000265055&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000261251&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000129757&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000269834&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000162997&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000144026&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000272693&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000266306&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000150394&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000285876&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000125848&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000277511&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000245614&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000138735&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000154760&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000226445&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000260857&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000225675&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000226686&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000138496&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000101746&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000268902&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000179841&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000135835&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000189229&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000184451&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000269388&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000255458&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000268362&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000139269&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000149090&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000140090&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000248498&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000229261&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000176834&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000071073&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000120162&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 7, &quot;v&quot;: &quot;ENSG00000153823&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 8, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000143184&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000183273&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000267370&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000100344&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000275549&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000181690&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000270061&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000231793&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000282206&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000162066&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000273243&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000231563&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000230787&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000183929&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000213365&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000233937&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000251247&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000213385&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000241889&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000107807&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000261575&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000134253&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000198496&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000179772&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000255345&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000255099&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000271151&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000236358&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000260066&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000105997&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000172197&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000270673&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000243335&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000243701&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000245556&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000144791&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000079102&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000156869&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000256542&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000253227&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000224165&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000128606&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000231652&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000205325&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000245534&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000184226&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000260625&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000162068&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000107551&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000224533&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000106483&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000279042&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000260081&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000178184&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000132975&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000166823&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000260077&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000236969&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000271155&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000161682&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000278948&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000119899&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 8, &quot;v&quot;: &quot;ENSG00000184489&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 9, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000277744&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000149922&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000168939&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000138376&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000197536&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000270761&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000212694&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000254859&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000277382&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000213213&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000214643&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000234509&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000248821&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000237298&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000084453&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000244627&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000172461&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000163328&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000272631&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000264775&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000264278&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000137090&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000113248&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000233264&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000266904&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000234692&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000273344&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000253878&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000181104&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000225511&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000052850&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000119699&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000205456&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000259424&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000223855&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000162782&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000250519&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000198468&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000269837&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000170775&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000249359&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000128604&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000168763&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000116574&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000255108&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000255639&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000234183&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000166840&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000188322&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000178803&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000141034&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000162733&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000232006&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000080031&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000060140&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000117016&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000099849&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000272502&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000236404&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000213412&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000109738&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 10, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000220201&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 11, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000111801&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000103269&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000237940&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000214617&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000143217&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000158106&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000234546&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000242876&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000249087&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000139190&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000106546&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000273599&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000169894&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000270164&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000279641&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000236819&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000232807&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000273554&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000099866&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000237357&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000233527&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000259658&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000164220&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000266313&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000197870&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000253858&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000273472&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000277639&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000235370&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000169064&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000225492&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000272195&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000223495&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000263363&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000231728&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000223566&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000285644&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000179284&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000226383&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000189419&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000248494&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000272870&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000234460&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000225950&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000271380&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000112902&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000161888&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000173727&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000260232&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000184611&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000265349&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000227479&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000184545&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000261115&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000205634&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000188732&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000229404&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000137878&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000160094&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000205269&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 10, &quot;v&quot;: &quot;ENSG00000261645&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000250286&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000279837&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000281468&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000244345&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000248429&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000232450&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000237886&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000107968&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000267500&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000270557&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000196668&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000256060&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000283674&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000255867&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000270095&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000184898&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000251095&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000236670&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000275437&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000270332&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000214922&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000249337&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000167549&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000249738&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000225855&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000270049&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000106031&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000272668&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000280362&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000261655&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000176383&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000224794&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000246100&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000076555&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000246863&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000136514&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000255240&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000264015&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000089225&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000270876&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000243981&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000100439&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000260874&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000274270&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000130045&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000253841&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000230873&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000207650&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000214711&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000169668&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000250284&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000186496&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000169193&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000157851&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000166869&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000070371&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000172969&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000233359&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000175785&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 11, &quot;v&quot;: &quot;ENSG00000171119&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 13, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000099957&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000173209&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000274114&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000278467&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000234537&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000259518&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000259295&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000204261&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000140022&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000136531&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000285696&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000229970&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000168061&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000269514&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000256988&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000228630&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000270605&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000169302&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000261366&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000278673&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000178026&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000249740&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000272791&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000238287&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000198570&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000234690&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000146021&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000049283&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000181126&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000224536&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000091262&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000231249&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000174740&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000162989&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000175170&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000231187&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000272482&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000229867&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000167536&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000232448&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000168484&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000255020&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000164061&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000237751&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000251611&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000243766&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000050030&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000160223&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000067842&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000239467&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000128165&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000223703&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000285588&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000154917&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000100181&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000232216&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000179314&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000145284&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 12, &quot;v&quot;: &quot;ENSG00000166123&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000224020&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000144792&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000279259&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000160298&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000178685&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000250075&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000131797&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000252892&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000273002&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000267248&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000276710&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000258405&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000229064&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000273340&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000260611&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000279672&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000262333&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000213967&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000104490&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000275223&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000237689&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000090512&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000279080&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000277999&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000285852&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000170743&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000239335&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000273363&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000236830&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000270504&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000249502&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000162643&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000230312&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000267416&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000165617&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000237595&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000047648&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000233571&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000189127&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000168904&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000269978&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000262185&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000129993&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000237356&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000172164&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000248206&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000142327&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000243926&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000203865&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000259319&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000246273&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000078053&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000137561&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000231367&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000119280&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000156052&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 13, &quot;v&quot;: &quot;ENSG00000136237&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 15, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000279026&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 16, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000250569&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000226913&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000075826&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000100767&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000237119&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000282851&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000125434&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000228274&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000178033&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000272205&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000111816&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000279771&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000162981&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000245275&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000267345&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000268592&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000106560&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000259153&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000164938&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000237161&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000123700&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000233396&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000198879&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000282870&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000143847&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000132517&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000267313&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000072135&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000221886&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000265702&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000235823&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000257185&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000170271&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000246174&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000061337&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000284690&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000283355&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000246523&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000215237&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000250318&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000236562&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000173706&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000130734&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000173320&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000173988&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000268658&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000176998&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000255337&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000111912&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000133985&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000107105&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000149679&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000065060&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000061918&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000178809&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000250950&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000140839&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000272638&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000261319&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000073146&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000119922&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000064547&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000085552&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000226087&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000279208&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000135315&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000247151&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000171121&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000279718&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000179023&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000277531&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000260409&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000249413&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000247765&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000236028&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000235821&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000264956&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000176204&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000237961&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000246263&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000259610&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000106415&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000232936&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000259349&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000266869&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000135378&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000281128&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000198673&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000175093&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000268560&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000259178&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000226580&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000256312&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000248846&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000265015&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000141068&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000283897&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000214076&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000072201&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000260653&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000249199&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000231419&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000181481&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000204084&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000057294&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000261524&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000262096&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000203644&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 12, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000026036&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000144460&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000228629&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000149043&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000248367&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000187944&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000259786&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000040731&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000236993&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000283930&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000130684&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000260261&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000169750&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000258199&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000273162&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000250312&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000267530&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000127084&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000280435&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000188662&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000267394&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000253535&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000206262&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000259363&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000179240&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000280445&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000258592&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000144852&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000230074&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000204882&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000226031&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000224216&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000099953&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000183850&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000279569&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000258897&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000240687&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000273082&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000105550&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000266885&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000103528&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000258743&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000143013&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000197576&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000180440&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000184154&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000204060&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000167535&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000182255&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000274099&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000088899&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000186472&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000233639&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000273366&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 18, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000162065&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 19, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000233327&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000265413&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000224106&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000254750&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000203872&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000162572&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000167280&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000184381&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000109501&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000272872&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000105967&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000227124&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000254777&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000272746&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000179397&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000158055&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000186094&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000211957&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000128271&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000260577&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000164342&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000235368&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000264843&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000225868&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000239887&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000272031&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000196220&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000229847&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000205682&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000235295&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000185652&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000285579&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000273872&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000255282&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000134769&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000171227&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000099889&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000121075&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000174007&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000138449&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000250303&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000099864&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000141441&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000260725&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000172733&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000172915&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000087258&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000275591&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000196116&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000139737&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 20, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000152910&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000255710&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 22, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000205090&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000160219&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000267780&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000173531&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000206077&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000255031&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000260141&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000224897&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000234883&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000268583&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000278897&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000232155&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000120907&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000102468&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000268204&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000169758&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000272221&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000280043&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000165943&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000095370&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000249052&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000229661&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000260412&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000068137&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000259070&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000276772&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000153982&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000120278&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000274680&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000130783&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000006740&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000254477&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000167333&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000007968&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000163629&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000157514&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000187486&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000203739&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000179673&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000258940&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000108861&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000181982&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000142459&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000103479&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000127540&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 17, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000283709&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 21, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000273639&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000143178&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000188833&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000248015&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000063127&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000099251&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000197375&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000178662&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000272473&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000255471&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000183196&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000166578&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000234617&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000169683&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000285804&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000179869&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000249937&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000233275&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000285706&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000151365&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000284060&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000134297&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000111554&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000163491&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000135631&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000162104&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000129474&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000103021&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000139174&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000107242&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000235109&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000267327&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000213337&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000150275&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000125533&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000277117&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000243660&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000177096&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000100307&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000111602&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000260053&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 23, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000105479&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000282381&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000149573&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000244480&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000100121&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000132793&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000110171&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000161509&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000250753&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000240086&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000142677&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000273305&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000273329&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000163840&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000074855&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000188868&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000125631&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000267030&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000261770&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000141738&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000245164&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000164542&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000148541&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000283646&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000165995&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000204904&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000260500&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000165959&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000113790&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000214106&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000237523&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000151790&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000033327&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000141576&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000240922&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000163517&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000188559&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000164306&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000106608&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 14, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000272752&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 24, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000279611&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000276071&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000262766&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000178761&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000239791&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000260287&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000260400&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000151687&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000107742&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000184619&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000265888&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000249079&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000176428&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000230194&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000271270&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000181513&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000142065&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000267424&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000259430&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000233455&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000231638&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000198205&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000273297&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000137103&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000075303&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000137502&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000260352&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000118946&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000185436&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000258969&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000259048&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000127220&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000150510&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000197943&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000184304&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000167632&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000279161&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000231083&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000004777&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000128298&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000176293&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000183801&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000102053&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000164683&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000099260&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000278931&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000120658&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000250049&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000246731&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000151967&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000267546&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000187266&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000273265&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000144362&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000238245&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000236750&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000073350&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000230790&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000227141&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000234773&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000168014&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000265763&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000126016&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000168297&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000052795&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000259343&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000019485&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 27, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000050426&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000281404&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000051523&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000214425&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000224003&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000260645&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000171320&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000143367&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000118407&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000170276&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000254847&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000186675&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000132196&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000166349&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000231646&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000283828&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000075651&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000109654&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000011638&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000228656&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000162062&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000283757&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000105516&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000106006&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000139835&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000135973&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000169862&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000145687&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000162437&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000184221&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000260750&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000141401&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000100246&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000268355&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000261302&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000261038&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000080947&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000005961&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000166507&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000227502&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000249006&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000249828&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000267696&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000203635&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000005108&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000108239&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000188501&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000234928&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000183625&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000198909&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000204991&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000105991&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000133056&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000181035&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000101349&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000214783&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000196517&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000151338&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000271833&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000138639&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000255221&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000236008&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000262823&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000127249&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000152782&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000196584&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000273674&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000101417&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000188385&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000187609&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000159921&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000134317&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000110675&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000041515&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000261572&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000169682&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000260947&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000141219&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000111879&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000137266&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000184441&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000170011&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000259431&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 26, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000279355&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000143387&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000267264&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000214796&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000236213&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000263834&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000141574&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000285571&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000204650&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000106536&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000149212&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000109680&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000175322&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000280239&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000188735&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000065361&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000267707&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000165113&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000226964&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000138193&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000078246&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000136720&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000152284&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000198780&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 25, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000272071&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000159588&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000245149&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000267509&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000168675&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000128655&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000171291&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000146411&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000198795&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000005187&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000235410&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000109103&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000257743&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000068971&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000168310&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000230825&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000121068&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000127328&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000269707&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000132680&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000178385&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000233215&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000125787&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000182263&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000226332&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000162599&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000198155&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000059122&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000108799&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000141391&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000177854&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000204118&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000161277&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000173825&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000186577&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000176887&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000155980&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000121318&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000260644&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000198105&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000121690&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000198429&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000091428&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000176058&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000213347&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000277741&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000157353&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000196476&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000169570&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000009709&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000116198&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000130021&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 28, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000261136&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000260774&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000198786&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000268743&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000270580&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000103995&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000110237&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000225399&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000145506&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000088538&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000203965&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000124191&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000243967&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000255094&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000274615&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000278133&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000254685&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000144306&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000167600&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000188603&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000232725&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000228137&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000144468&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000170345&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000235244&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000232034&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000152939&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 34, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000168811&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000276744&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000272146&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 37, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000225205&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 38, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000225655&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 29, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000162924&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 30, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000180251&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 33, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000171574&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 35, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000234685&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 39, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000275212&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}, {&quot;x&quot;: 40, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000233384&quot;, &quot;Subtypes&quot;: &quot;cluster_04&quot;, &quot;colors&quot;: &quot;#009eff&quot;}], &quot;type&quot;: &quot;heatmap&quot;, &quot;color&quot;: &quot;#009eff&quot;, &quot;name&quot;: &quot;cluster_04&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 71, &quot;y&quot;: 14, &quot;v&quot;: &quot;ENSG00000125246&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 15, &quot;v&quot;: &quot;ENSG00000259498&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000166136&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000232328&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000063438&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000253582&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000121413&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000262884&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000134278&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000181031&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000115963&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000181029&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000140931&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000162374&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000088387&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000189350&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000273027&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000153832&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000160360&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000251595&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000177291&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000179627&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000146555&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000077454&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000176490&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000183018&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000238243&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000196372&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000136205&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000075240&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000186918&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000278390&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000050820&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000144711&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000261553&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000167264&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000196557&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000259940&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000139428&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000134909&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000187672&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000255441&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000119408&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000168255&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000258081&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000177679&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000165757&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000099991&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000280002&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000206418&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000146950&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000154359&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000138190&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000130758&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000135905&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000103047&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000183458&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000101152&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000198860&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000246763&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000251602&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000237212&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000185453&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000107719&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000256151&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000145287&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000160813&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000005194&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000151651&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000265728&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000175267&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000176533&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000162337&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000255495&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000127554&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000262585&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000099814&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000237706&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000065491&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000166073&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000249685&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000257496&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000184923&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000256152&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000172086&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000145934&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 31, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000163463&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000263155&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000107185&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000242021&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000213390&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000138073&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000170525&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000163602&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000133243&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000176108&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000137819&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000196526&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000029725&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000013561&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000140015&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000128283&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000169169&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000243789&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000111450&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000096080&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000254602&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000267799&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000276931&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000234231&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000224886&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000230309&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000206535&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000163283&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000223768&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000235173&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000205476&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000259952&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000106246&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000184270&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000078269&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000173020&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000119714&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000100065&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000156966&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000261578&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000006327&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000279675&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000254620&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000186081&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000198431&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000229619&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000171608&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000255202&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000151892&quot;, &quot;Subtypes&quot;: &quot;cluster_05&quot;, &quot;colors&quot;: &quot;#3700ff&quot;}], &quot;type&quot;: &quot;heatmap&quot;, &quot;color&quot;: &quot;#3700ff&quot;, &quot;name&quot;: &quot;cluster_05&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 58, &quot;y&quot;: 0, &quot;v&quot;: &quot;ENSG00000176826&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 1, &quot;v&quot;: &quot;ENSG00000154080&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 5, &quot;v&quot;: &quot;ENSG00000205683&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 9, &quot;v&quot;: &quot;ENSG00000102796&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000234684&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 16, &quot;v&quot;: &quot;ENSG00000104899&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000170382&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000205560&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 17, &quot;v&quot;: &quot;ENSG00000103197&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000168575&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000126500&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000132394&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 18, &quot;v&quot;: &quot;ENSG00000114923&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000244187&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000034053&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000165898&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000160953&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 19, &quot;v&quot;: &quot;ENSG00000118557&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000170390&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000185046&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000089876&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000197226&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000100324&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000141503&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 20, &quot;v&quot;: &quot;ENSG00000116691&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000180347&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000266265&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000008130&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000233024&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000128731&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000135945&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 21, &quot;v&quot;: &quot;ENSG00000092208&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 7, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000100890&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000116117&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000168959&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000188312&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000152253&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000205356&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000182979&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000104866&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000140948&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 22, &quot;v&quot;: &quot;ENSG00000138032&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000090932&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000132024&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000118194&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000089057&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000254681&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000107404&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000111676&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 23, &quot;v&quot;: &quot;ENSG00000013810&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000082556&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000157978&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000152061&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000144036&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000198960&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000121211&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000160285&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000171700&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000160191&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000260910&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000253301&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000157111&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000197056&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 24, &quot;v&quot;: &quot;ENSG00000196550&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000170456&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000184838&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000169925&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000133424&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000267374&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000242779&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000113504&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000173757&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000269404&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000205746&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000161180&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000172878&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 25, &quot;v&quot;: &quot;ENSG00000115163&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000169871&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000239213&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000088756&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000101577&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000136574&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000152348&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000145623&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000227827&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000185760&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000101935&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000188859&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 26, &quot;v&quot;: &quot;ENSG00000163808&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000186369&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000158079&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000168970&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000140323&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000056998&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000107036&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000128266&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000170365&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000188060&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000133104&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000257038&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000196700&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000149474&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000133275&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000161542&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000105778&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 27, &quot;v&quot;: &quot;ENSG00000122966&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000103160&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000140835&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000160949&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000204789&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000065675&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000142197&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000105552&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000058866&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000259768&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000276644&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000178585&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000132613&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000198648&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000134452&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000250251&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000134538&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000102385&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 28, &quot;v&quot;: &quot;ENSG00000080986&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000279821&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000205268&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000124641&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000126603&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000197822&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000173894&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000166321&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000168913&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000143553&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000070778&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000214960&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000033170&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000063601&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000067606&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000156970&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 29, &quot;v&quot;: &quot;ENSG00000169607&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000197550&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000155330&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000111886&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000165238&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000181444&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000130700&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000138395&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000245937&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000119862&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000100139&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000247134&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000276023&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000100239&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000021762&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000048471&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000155729&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000168096&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000122299&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000103091&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000154429&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 30, &quot;v&quot;: &quot;ENSG00000040275&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 36, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000107954&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000120832&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000134324&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000116205&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000065717&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000250510&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000129422&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000053254&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000128274&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000168538&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000139350&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000174842&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000148985&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000197465&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000111186&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000174306&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000146966&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000111452&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000089094&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000174839&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000136870&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000133812&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000175470&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000215784&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 31, &quot;v&quot;: &quot;ENSG00000136153&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 41, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000100060&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 42, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000227110&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 43, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000129484&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 44, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000183671&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000205133&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000074590&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000087077&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000106571&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000061455&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000140044&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000270533&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000156469&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000116044&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000236889&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000102098&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000120910&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000139734&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000217648&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000124160&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000149639&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000008256&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000263513&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 32, &quot;v&quot;: &quot;ENSG00000163535&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 3, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000266967&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000198838&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000181754&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000148411&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000179152&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000133640&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000116213&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000111911&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000183765&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000271781&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000004766&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000196263&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000164828&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000109686&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000236451&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000039523&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000263335&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000136709&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000143514&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000126562&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000197050&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 33, &quot;v&quot;: &quot;ENSG00000134690&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000170293&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000139531&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000128849&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000245662&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000117153&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000196814&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000169740&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000145996&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000121454&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000116663&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000182667&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000110921&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000084090&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000170485&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000101945&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000186868&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000163539&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000167193&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000164185&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000129810&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000049618&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000100629&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000166833&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000120733&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 34, &quot;v&quot;: &quot;ENSG00000185361&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 32, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000106078&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 45, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000164506&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000138101&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000176049&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000198816&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000079432&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000171224&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000107779&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000108961&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000264558&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000004975&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000156787&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000125449&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000166575&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000205726&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000255394&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000130396&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000079313&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000143815&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000183020&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000075218&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 35, &quot;v&quot;: &quot;ENSG00000117650&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000273712&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000247796&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000025293&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000119509&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000171813&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000273654&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000076826&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000221994&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000103248&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000117748&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000280202&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000171792&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000165689&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000107771&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000110844&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000181626&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000122515&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000035687&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000151726&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000107863&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000141564&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 36, &quot;v&quot;: &quot;ENSG00000129195&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000169598&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000198416&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000065882&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000177303&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000248663&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000260375&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000168395&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000150477&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000158985&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000197020&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000283154&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000141627&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000188779&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000108798&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000058091&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000088356&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000146463&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000172046&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000187951&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000109971&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 37, &quot;v&quot;: &quot;ENSG00000198826&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 46, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000104375&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000205643&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000198964&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000189319&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000020577&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000132970&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000178397&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000151445&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000166263&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000168874&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000104313&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000140386&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000153786&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000141837&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000135205&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000267216&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000154845&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000005102&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000171621&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000121621&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 38, &quot;v&quot;: &quot;ENSG00000134222&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000163820&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000241370&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000168497&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000147862&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000233932&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000164758&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000227082&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000212978&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000170145&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000076650&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000148660&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000112851&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000076685&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000151208&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000094631&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000134744&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000085491&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000136715&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000104859&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000254302&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000170037&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 39, &quot;v&quot;: &quot;ENSG00000137337&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 47, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000087903&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000141664&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000165164&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000162522&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000108389&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000161202&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000111266&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000280053&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000196867&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000080298&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000073331&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000105483&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000133895&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000137710&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000183780&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000164323&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000141084&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000199804&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000119403&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000171169&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000083544&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000188610&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 40, &quot;v&quot;: &quot;ENSG00000170677&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000100304&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000162600&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000128272&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000156136&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000285530&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000064652&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000143437&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000159184&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000082497&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000249784&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000183137&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000141385&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000128563&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000147912&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000061273&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000166821&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000173218&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000119715&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000247675&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000136861&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000171681&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000143228&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 41, &quot;v&quot;: &quot;ENSG00000235748&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 48, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000182132&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000074317&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000179299&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000158856&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000215424&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000124596&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000141376&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000164494&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000102543&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000142039&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000104442&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000263006&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000104177&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000159873&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000214832&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000220685&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000164104&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000101574&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000103494&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000113048&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000145386&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000267201&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 42, &quot;v&quot;: &quot;ENSG00000139354&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000135736&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000131374&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000115904&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000136448&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000143776&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000128654&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000182606&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000183323&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000155974&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000135093&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000114904&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000103018&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000166987&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000151276&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000100426&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000251485&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000183826&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000130699&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000161800&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000024526&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 43, &quot;v&quot;: &quot;ENSG00000128944&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 49, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000177732&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000103460&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000112685&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000137764&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000146143&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000106829&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000092871&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000150760&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000126858&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000249456&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000051382&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000136699&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000103932&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000150756&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000132591&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000136098&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000248008&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000215630&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000136122&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 44, &quot;v&quot;: &quot;ENSG00000169679&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000136944&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000248927&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000143919&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000168488&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000178234&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000171791&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000152818&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000151148&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000054965&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000197619&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000198793&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000138375&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000118307&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000171056&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000164880&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000213096&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000160294&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000007923&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000243156&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000107929&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 45, &quot;v&quot;: &quot;ENSG00000177410&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000116786&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000134533&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000093183&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000136936&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000125863&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000143512&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000058056&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000168005&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000010803&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000143952&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000126461&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000118961&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000112877&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000089685&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000276293&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000158006&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000279786&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000089154&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000090889&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 46, &quot;v&quot;: &quot;ENSG00000087586&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000228623&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000214517&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000131943&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000101298&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000204371&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000133740&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000197951&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000187624&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000185049&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000149657&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000139291&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000171634&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000186111&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000262979&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000110090&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000047662&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000154040&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000152404&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 47, &quot;v&quot;: &quot;ENSG00000229816&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000168228&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000107263&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000081923&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000078319&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000144645&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000234129&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000184005&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000270020&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000189166&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000186314&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000128245&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000019995&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000144355&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000158683&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000185745&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000171302&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000154229&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000157657&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000239415&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000164010&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 48, &quot;v&quot;: &quot;ENSG00000151461&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000226981&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000204406&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000157426&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000135049&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000131653&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000066557&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000235072&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000196363&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000088808&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000105137&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000129292&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000102710&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000124422&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000155561&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000115966&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000198646&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000128656&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000127191&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000113734&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 49, &quot;v&quot;: &quot;ENSG00000178343&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000116990&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000205628&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000148690&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000186132&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000153993&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000214562&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000101605&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000168491&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000132153&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000272909&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000006704&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000148719&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000188486&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000115738&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000251031&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000226318&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000205250&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000072571&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 50, &quot;v&quot;: &quot;ENSG00000166851&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000171084&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000135966&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000124614&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000088543&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000129116&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000077713&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000164109&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000123213&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000163431&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000271978&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000261056&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000276043&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000078687&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000172534&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000103832&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000109927&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000196498&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 51, &quot;v&quot;: &quot;ENSG00000131626&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000167081&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000243678&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000244005&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000144724&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000054611&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000160172&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000115363&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000175985&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000167962&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000165626&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000148337&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000115504&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000205534&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000138802&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000120029&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000167987&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000119397&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000185989&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 52, &quot;v&quot;: &quot;ENSG00000088325&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000071205&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000055147&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000116212&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000103852&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000130227&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000074211&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000148498&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000154240&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000116871&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000104679&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000121741&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000164815&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000064393&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000014164&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000198919&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000131378&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000210151&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000173456&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 53, &quot;v&quot;: &quot;ENSG00000112941&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000005882&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000125703&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000131732&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000249279&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000185880&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000269858&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000101871&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000107625&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000137168&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000140262&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000103126&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000131375&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000140406&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000276234&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000143033&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000114346&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000004897&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000132361&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 54, &quot;v&quot;: &quot;ENSG00000100242&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000166387&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000178127&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000226979&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000131149&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000150712&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000170638&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000147082&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000222601&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000006837&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000183979&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000167461&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000136111&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000165322&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000136536&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000181090&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000168818&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000171872&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 55, &quot;v&quot;: &quot;ENSG00000126787&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000182196&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000182272&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000104147&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000103148&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000120837&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000169760&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000163946&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000088986&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000127527&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000186625&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000010292&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000126003&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000160087&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000237296&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000076382&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000183117&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000038382&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 56, &quot;v&quot;: &quot;ENSG00000102974&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000150054&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000214022&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000072415&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000172985&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000236104&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000273230&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000182872&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000131115&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000252835&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000091527&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000264343&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000116874&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000256663&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000196437&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000272333&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000141380&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 57, &quot;v&quot;: &quot;ENSG00000115419&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 50, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000260289&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000242616&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000198055&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000175221&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000249743&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000157985&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000118894&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000272975&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000134852&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000277942&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000035499&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000121957&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000250474&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000266028&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000151466&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000210144&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000154127&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 58, &quot;v&quot;: &quot;ENSG00000165006&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000197381&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000048991&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000162517&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000241343&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000065559&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000132405&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000144283&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000183287&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000204469&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000031823&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000263235&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000122376&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000060339&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000100578&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000183604&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000169239&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 59, &quot;v&quot;: &quot;ENSG00000110713&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000197808&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000173991&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000259933&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000035928&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000042088&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000068383&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000144908&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000261691&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000258548&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000126216&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000196367&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000109685&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000258101&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000123975&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000170852&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 60, &quot;v&quot;: &quot;ENSG00000136811&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000254186&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000140905&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000168078&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000157510&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000041988&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000172731&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000179456&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000106443&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000163374&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000186575&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000047849&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000147905&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000134758&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000078403&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000092820&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 61, &quot;v&quot;: &quot;ENSG00000072864&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000106588&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000139675&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000278834&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000130382&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000233514&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000196290&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000075407&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000196792&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000069956&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000125755&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000170325&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000004809&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000274447&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000069275&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000141905&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 62, &quot;v&quot;: &quot;ENSG00000106305&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000198563&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000113391&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000096872&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000104299&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000075886&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000138640&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000207357&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000108106&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000273899&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000111206&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000138180&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000085231&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000276517&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000006634&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 63, &quot;v&quot;: &quot;ENSG00000145041&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000124593&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000103599&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000140750&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000149571&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000121964&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000185480&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000140543&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000242512&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000079435&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000131023&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000066117&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000091137&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000112701&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000104756&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 64, &quot;v&quot;: &quot;ENSG00000112984&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000240770&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000119844&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000284879&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000100575&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000058600&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000064961&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000114416&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000204899&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000065000&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000085982&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000145715&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000103194&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000147316&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000071243&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 65, &quot;v&quot;: &quot;ENSG00000113649&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000161960&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000285793&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000167994&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000204366&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000055130&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000155111&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000112640&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000088038&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000163848&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000165660&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000055917&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000060069&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000231007&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000280206&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 66, &quot;v&quot;: &quot;ENSG00000134057&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000122033&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000170854&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000068489&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000169403&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000103381&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000132964&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000110172&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000124613&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000020426&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000187049&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000163002&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000178105&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000244588&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 67, &quot;v&quot;: &quot;ENSG00000144583&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000198464&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000134061&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000152086&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000133393&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000130669&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000135632&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000082068&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000160007&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000036549&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000163510&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000157456&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000117399&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000005339&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 68, &quot;v&quot;: &quot;ENSG00000166477&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000285053&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000275895&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000261780&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000118007&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000148429&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000015171&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000120053&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000175395&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000113368&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000165675&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000131848&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000168454&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000165071&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 69, &quot;v&quot;: &quot;ENSG00000061936&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000280987&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000272055&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000206932&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000029993&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000105993&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000075188&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000235499&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000186193&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000162636&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000122644&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000174720&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000167522&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000215421&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 70, &quot;v&quot;: &quot;ENSG00000103356&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 5, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000225330&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}, {&quot;x&quot;: 6, &quot;y&quot;: 71, &quot;v&quot;: &quot;ENSG00000267009&quot;, &quot;Subtypes&quot;: &quot;cluster_06&quot;, &quot;colors&quot;: &quot;#ff00ed&quot;}], &quot;type&quot;: &quot;heatmap&quot;, &quot;color&quot;: &quot;#ff00ed&quot;, &quot;name&quot;: &quot;cluster_06&quot;}, {&quot;data&quot;: [{&quot;x&quot;: 50, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5162&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 51, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5163&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 52, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5164&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 53, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5165&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 54, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5166&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 55, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5167&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 56, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5168&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 57, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5169&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 58, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5170&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 59, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5171&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 60, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5172&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 61, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5173&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 62, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5174&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 63, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5175&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 64, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5176&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 65, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5177&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 66, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5178&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 67, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5179&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 68, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5180&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 69, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5181&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 70, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5182&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}, {&quot;x&quot;: 71, &quot;y&quot;: 71, &quot;v&quot;: &quot;NaN-5183&quot;, &quot;Subtypes&quot;: &quot;NaN&quot;, &quot;colors&quot;: &quot;#000000&quot;}], &quot;type&quot;: &quot;heatmap&quot;, &quot;color&quot;: &quot;#000000&quot;, &quot;name&quot;: &quot;NaN&quot;}]; var dataLen = data.length; for (var ix = 0; ix &lt; dataLen; ix++) { chart.addSeries(data[ix]); } }); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt;\" height=850 width=1000></iframe>"
      ],
      "text/plain": [
       "<highcharts.highcharts.highcharts.Highchart at 0x7f9417620d90>"
      ]
     },
     "execution_count": 12,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "mp.plot_grid()"
   ]
  },
  {
   "cell_type": "markdown",
   "id": "09ca1386-5b42-41e2-929b-8a69d2fcb3d4",
   "metadata": {},
   "source": [
    "### 03.tree plot"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 15,
   "id": "c97cbfd3-d47a-4fc8-96a2-0c79f74a35dd",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "text/html": [
       "<div>\n",
       "<style scoped>\n",
       "    .dataframe tbody tr th:only-of-type {\n",
       "        vertical-align: middle;\n",
       "    }\n",
       "\n",
       "    .dataframe tbody tr th {\n",
       "        vertical-align: top;\n",
       "    }\n",
       "\n",
       "    .dataframe thead th {\n",
       "        text-align: right;\n",
       "    }\n",
       "</style>\n",
       "<table border=\"1\" class=\"dataframe\">\n",
       "  <thead>\n",
       "    <tr style=\"text-align: right;\">\n",
       "      <th></th>\n",
       "      <th>TYPE</th>\n",
       "      <th>colors</th>\n",
       "      <th>STYLE</th>\n",
       "    </tr>\n",
       "  </thead>\n",
       "  <tbody>\n",
       "    <tr>\n",
       "      <th>ENSG00000003436</th>\n",
       "      <td>clade</td>\n",
       "      <td>#ffd500</td>\n",
       "      <td>normal</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>ENSG00000004139</th>\n",
       "      <td>clade</td>\n",
       "      <td>#ffd500</td>\n",
       "      <td>normal</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>ENSG00000004799</th>\n",
       "      <td>clade</td>\n",
       "      <td>#ffd500</td>\n",
       "      <td>normal</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>ENSG00000004948</th>\n",
       "      <td>clade</td>\n",
       "      <td>#ffd500</td>\n",
       "      <td>normal</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>ENSG00000005073</th>\n",
       "      <td>clade</td>\n",
       "      <td>#ffd500</td>\n",
       "      <td>normal</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>...</th>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "      <td>...</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>ENSG00000280053</th>\n",
       "      <td>clade</td>\n",
       "      <td>#ff00ed</td>\n",
       "      <td>normal</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>ENSG00000280202</th>\n",
       "      <td>clade</td>\n",
       "      <td>#ff00ed</td>\n",
       "      <td>normal</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>ENSG00000280206</th>\n",
       "      <td>clade</td>\n",
       "      <td>#ff00ed</td>\n",
       "      <td>normal</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>ENSG00000283154</th>\n",
       "      <td>clade</td>\n",
       "      <td>#ff00ed</td>\n",
       "      <td>normal</td>\n",
       "    </tr>\n",
       "    <tr>\n",
       "      <th>ENSG00000285530</th>\n",
       "      <td>clade</td>\n",
       "      <td>#ff00ed</td>\n",
       "      <td>normal</td>\n",
       "    </tr>\n",
       "  </tbody>\n",
       "</table>\n",
       "<p>5162 rows × 3 columns</p>\n",
       "</div>"
      ],
      "text/plain": [
       "                  TYPE   colors   STYLE\n",
       "ENSG00000003436  clade  #ffd500  normal\n",
       "ENSG00000004139  clade  #ffd500  normal\n",
       "ENSG00000004799  clade  #ffd500  normal\n",
       "ENSG00000004948  clade  #ffd500  normal\n",
       "ENSG00000005073  clade  #ffd500  normal\n",
       "...                ...      ...     ...\n",
       "ENSG00000280053  clade  #ff00ed  normal\n",
       "ENSG00000280202  clade  #ff00ed  normal\n",
       "ENSG00000280206  clade  #ff00ed  normal\n",
       "ENSG00000283154  clade  #ff00ed  normal\n",
       "ENSG00000285530  clade  #ff00ed  normal\n",
       "\n",
       "[5162 rows x 3 columns]"
      ]
     },
     "execution_count": 15,
     "metadata": {},
     "output_type": "execute_result"
    }
   ],
   "source": [
    "mp.to_nwk_tree()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 14,
   "id": "6f66ec03-0257-4500-9f03-fba8df76221a",
   "metadata": {},
   "outputs": [
    {
     "data": {
      "image/png": "iVBORw0KGgoAAAANSUhEUgAAA7EAAAJ3CAYAAABC5dZEAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAADSiklEQVR4nOz9f3wc133f+78OAP4UKYqkZIjWT0qWZcs/tIoVO2kcGfkpOUltp01bm06apkn4/bp1e2/vbXub636T1qnvTfrj9qbfpE7RxE3SKzj9lShOaoV249CK7diybC39g7YoiZQlURAokSBIEACXAM7945yDPRjM7s7uzu7sLN7PxwMPALuzM2fO/Nj5zOfMOcZai4iIiIiIiEgZjBRdABEREREREZGsFMSKiIiIiIhIaSiIFRERERERkdJQECsiIiIiIiKloSBWRERERERESkNBrIiIiIiIiJTGWNEFSHPttdfaW2+9tehiiIiIiIiISM6+9KUvvWytva7Tzw9kEHvrrbfy2GOPFV0MERERERERyZkx5lvdfF7NiUVERERERKQ0FMSKiIiIiIhIaSiIFRERERERkdJQECsiIiIiIiKloSBWRERERERESkNBrIiIiIiIiJSGglgREREREREpDQWxIiIiIiIiUhoKYkVERERERKQ0FMSKiIiIiIhIaSiIFRERERERkdJQECsiIiIiIiKloSBWRERERERESkNBrIiIiIiIiJRGyyDWGHOTMeZPjTHHjTFfN8b8TynTGGPMvzHGPGWM+Yox5tui937SGPOk//nJvFdARERERERENo+xDNMsA/+rtfbLxpjdwJeMMZ+01h6Ppnk7cIf/eQvwYeAtxph9wC8A9wLWf/Zj1trZXNdCRERERERENoWWmVhr7bS19sv+74vAN4AbEpO9E/gd63weuMYYcwC4H/iktfacD1w/CTyQ6xqIiIiIiIjIppElE7vGGHMrcA/whcRbNwDPRf8/719r9LqIFGF2Euamii6FiIjI4NpzCPYeLroUItJE5o6djDG7gP8G/M/W2gt5F8QYc9gY85gx5rGXXnop79mLCLgAdqladClEREQG01JVN3tFSiBTJtYYswUXwD5orf29lElOAzdF/9/oXzsNTCReP5q2DGvtJDAJcO+999os5RKRDmyvwK1Hiy6FiIg0MfkETJ0suhSbULjR+41CS7FpHboNDt9ZdCmkDLL0TmyA3wS+Ya39vxpM9jHgr/teir8DmLPWTgNHgB80xuw1xuwFftC/JiIiIiINTJ2E6rmiS7EJba+4H+m76jnduJHssmRivwv4CeCrxpiqf+1/B24GsNb+OvBx4IeAp4AF4Kf8e+eMMb8IfNF/7oPWWp2SRURERFqo7IOjby+6FCL9MfFw0SWQMmkZxFprPwOYFtNY4G83eO8jwEc6Kp2IiIiIiIhIJHPHTiIiIiIiIiJFUxArIiIiIiIipdHWOLEiPaUxTHsv9Lr4zESRpRh+GmNQREREpGeUiZXBoTFMe0+9LvaexhgUERER6SllYmWwaAxTKTtluUVERER6SplYERERERERKQ0FsSIiIiIiIlIaCmJFRERERESkNBTEioiIiIiISGkoiBUREREREZHSUBArIiIiIiIipaEgVkREREREREpDQayIiIiIiIiUhoJYERERERERKY2xogsgIiIiIiKdeWgSjkwVXYruXT7nfr/vl4stRx7uPwTvOlx0KYabMrEiIiIiIiV1ZAqerBZdiu5V9rmfsnuyOhw3FQadMrEiIiIiIiV2RwU+fLToUgjA+yaKLsHmoCBWRPrmCJM8wpDfnry+6v+YKLAQ/XEfh7gftZcSERGR/lJzYhHpm0eY4hTVoovRW9sr7mfInaI6/DckREREZCApEysifXWQCh/iaNHFkC59YBNkmkVERGQwKRMrIiIiIiIipaEgVkREREREREpDQayIiIiIiIiUhoJYERERERERKQ0FsSIiIiIiIlIaCmJFRERERESkNBTEioiIiIiISGkoiBUREREREZHSUBArIiIiIiIipaEgVkREREREREpDQayIiIiIiIiUhoJYERERERERKQ0FsSIiIiIiIlIaCmJFRERERESkNBTEioiIiIiISGkoiBUREREREZHSUBArIiIiIiIipaEgVkREREREREpDQayIiIiIiIiUhoJYERERERERKQ0FsSIiIiIiIlIaCmJFRERERESkNBTEioiIiIiISGmMtZrAGPMR4EeAM9ba16e8/w+A90bzey1wnbX2nDHmGeAisAIsW2vvzavgIiIiIiIisvm0DGKB3wJ+FfidtDettf8C+BcAxpi/CPw9a+25aJLvsda+3GU5h9vsJMxNFV2K4i1V3e9nJoosxeDYcwj2Hi66FCIiIiIiA6Vlc2Jr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SGkoiBUREREREZHSUBArIiIiIiIipaEgVkREREREREpDQayIiIiIiIiUhoJYERERERERKQ0FsSIiIiIiIlIaCmJFRERERESkNBTEioiIiIiISGkoiBUREREREZHSUBArIiIiIiIipaEgVkREREREREpjrOgCiIhI9yZ5nCmOr3utygwAEzy47vVD3MVh7ulb2URERETypEysiMgQmOL4WtAaVBinwvi616rMbAh2RURERMpEmVgRkSFRYZyjvLfpNMmsrIiIiEjZKIgVERERkbZMPgFTJ4suBVTPut8TDxdbjuDQbXD4zqJLITL81JxYRERERNoydRKq54ouBVT2u59BUD03GIG9yGagTKyIiIiItK2yD46+vehSDI5ByQaLbAbKxIqIiIiIiEhpKIgVERERERGR0lAQKyIiIiIiIqWhZ2JFRESGnHqS3Ui9yIqIlJcysSIiIkNOPcmup15kRUT6YHIJJi5Addn9TFxwr+VAmVgREZFNQD3J1g1CJlhEZOhN1aC6AhUfclZXgBoc3t71rBXEioiIiIiISP4qo3D0avf3xIXcZqsgVkTacoRJHmGqo8+eogrAB5ho+7P3cYj7OdzRckVERERkeOiZWBFpyyNMrQWj7TpIhYNU2v7cKaodB84iIiIiMlyUiRWRth2kwoc42rfldZK5FREREZHhpEysiIiIiIiIlEbLTKwx5iPAjwBnrLWvT3n/vcD/BhjgIvA+a+0x/94z/rUVYNlae29+RRcRERERkU1vcsn1hJumuux+N+tU6NDWXHrMlf7Jkon9LeCBJu+fAt5mrX0D8IvAZOL977HWVhTAioiIiIhI7sJQLmkqY/UhXtJUVxoHwDKwWmZirbWPGGNubfL+56J/Pw/cmEO5REREREREsomHcmlHjsO+SP/k/UzsTwPxEOIW+IQx5kvGmKZjYxhjDhtjHjPGPPbSSy/lXCwREREREREZBrn1TmyM+R5cEPvW6OW3WmtPG2NeAXzSGPNNa+0jaZ+31k7imyLfe++9Nq9yiZTS7CTMdTikzFLV/X5morPP7zkEezUeq4iIiIgMplwyscaYNwK/AbzTWns2vG6tPe1/nwF+H3hzHssTGXpzU/VgtF3bK+6nE0vVzoNnEREREZE+6DoTa4y5Gfg94CestSei168CRqy1F/3fPwh8sNvliWwa2ytw69H+LrPT7K2I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\n",
      "text/plain": [
       "<Figure size 1152x576 with 1 Axes>"
      ]
     },
     "execution_count": 14,
     "metadata": {},
     "output_type": "execute_result"
    },
    {
     "data": {
      "image/png": "iVBORw0KGgoAAAANSUhEUgAAA7EAAAJ3CAYAAABC5dZEAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAADSiklEQVR4nOz9f3wc133f+78OAP4UKYqkZIjWT0qWZcs/tIoVO2kcGfkpOUltp01bm06apkn4/bp1e2/vbXub636T1qnvTfrj9qbfpE7RxE3SKzj9lShOaoV249CK7diybC39g7YoiZQlURAokSBIEACXAM7945yDPRjM7s7uzu7sLN7PxwMPALuzM2fO/Nj5zOfMOcZai4iIiIiIiEgZjBRdABEREREREZGsFMSKiIiIiIhIaSiIFRERERERkdJQECsiIiIiIiKloSBWRERERERESkNBrIiIiIiIiJTGWNEFSHPttdfaW2+9tehiiIiIiIiISM6+9KUvvWytva7Tzw9kEHvrrbfy2GOPFV0MERERERERyZkx5lvdfF7NiUVERERERKQ0FMSKiIiIiIhIaSiIFRERERERkdJQECsiIiIiIiKloSBWRERERERESkNBrIiIiIiIiJSGglgREREREREpDQWxIiIiIiIiUhoKYkVERERERKQ0FMSKiIiIiIhIaSiIFRERERERkdJQECsiIiIiIiKloSBWRERERERESkNBrIiIiIiIiJRGyyDWGHOTMeZPjTHHjTFfN8b8TynTGGPMvzHGPGWM+Yox5tui937SGPOk//nJvFdARERERERENo+xDNMsA/+rtfbLxpjdwJeMMZ+01h6Ppnk7cIf/eQvwYeAtxph9wC8A9wLWf/Zj1trZXNdCRERERERENoWWmVhr7bS19sv+74vAN4AbEpO9E/gd63weuMYYcwC4H/iktfacD1w/CTyQ6xqIiIiIiIjIppElE7vGGHMrcA/whcRbNwDPRf8/719r9LqIFGF2Euamii6FiIjI4NpzCPYeLroUItJE5o6djDG7gP8G/M/W2gt5F8QYc9gY85gx5rGXXnop79mLCLgAdqladClEREQG01JVN3tFSiBTJtYYswUXwD5orf29lElOAzdF/9/oXzsNTCReP5q2DGvtJDAJcO+999os5RKRDmyvwK1Hiy6FiIg0MfkETJ0suhSbULjR+41CS7FpHboNDt9ZdCmkDLL0TmyA3wS+Ya39vxpM9jHgr/teir8DmLPWTgNHgB80xuw1xuwFftC/JiIiIiINTJ2E6rmiS7EJba+4H+m76jnduJHssmRivwv4CeCrxpiqf+1/B24GsNb+OvBx4IeAp4AF4Kf8e+eMMb8IfNF/7oPWWp2SRURERFqo7IOjby+6FCL9MfFw0SWQMmkZxFprPwOYFtNY4G83eO8jwEc6Kp2IiIiIiIhIJHPHTiIiIiIiIiJFUxArIiIiIiIipdHWOLEiPaUxTHsv9Lr4zESRpRh+GmNQREREpGeUiZXBoTFMe0+9LvaexhgUERER6SllYmWwaAxTKTtluUVERER6SplYERERERERKQ0FsSIiIiIiIlIaCmJFRERERESkNBTEioiIiIiISGkoiBUREREREZHSUBArIiIiIiIipaEgVkREREREREpDQayIiIiIiIiUhoJYERERERERKY2xogsgIiIiIiKdeWgSjkwVXYruXT7nfr/vl4stRx7uPwTvOlx0KYabMrEiIiIiIiV1ZAqerBZdiu5V9rmfsnuyOhw3FQadMrEiIiIiIiV2RwU+fLToUgjA+yaKLsHmoCBWRPrmCJM8wpDfnry+6v+YKLAQ/XEfh7gftZcSERGR/lJzYhHpm0eY4hTVoovRW9sr7mfInaI6/DckREREZCApEysifXWQCh/iaNHFkC59YBNkmkVERGQwKRMrIiIiIiIipaEgVkREREREREpDQayIiIiIiIiUhoJYERERERERKQ0FsSIiIiIiIlIaCmJFRERERESkNBTEioiIiIiISGkoiBUREREREZHSUBArIiIiIiIipaEgVkREREREREpDQayIiIiIiIiUhoJYERERERERKQ0FsSIiIiIiIlIaCmJFRERERESkNBTEioiIiIiISGkoiBUREREREZHSUBArIiIiIiIipaEgVkREREREREpDQayIiIiIiIiUhoJYERERERERKQ0FsSIiIiIiIlIaCmJFRERERESkNBTEioiIiIiISGmMtZrAGPMR4EeAM9ba16e8/w+A90bzey1wnbX2nDHmGeAisAIsW2vvzavgIiIiIiIisvm0DGKB3wJ+FfidtDettf8C+BcAxpi/CPw9a+25aJLvsda+3GU5h9vsJMxNFV2K4i1V3e9nJoosxeDYcwj2Hi66FCIiIiIiA6Vlc2Jr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SGkoiBUREREREZHSUBArIiIiIiIipaEgVkREREREREpDQayIiIiIiIiUhoJYERERERERKQ0FsSIiIiIiIlIaCmJFRERERESkNBTEioiIiIiISGkoiBUREREREZHSUBArIiIiIiIipaEgVkREREREREpjrOgCiIhI9yZ5nCmOr3utygwAEzy47vVD3MVh7ulb2URERETypEysiMgQmOL4WtAaVBinwvi616rMbAh2RURERMpEmVgRkSFRYZyjvLfpNMmsrIiIiEjZKIgVERERkbZMPgFTJ4suBVTPut8TDxdbjuDQbXD4zqJLITL81JxYRERERNoydRKq54ouBVT2u59BUD03GIG9yGagTKyIiIiItK2yD46+vehSDI5ByQaLbAbKxIqIiIiIiEhpKIgVERERERGR0lAQKyIiIiIiIqWhZ2JFRESGnHqS3Ui9yIqIlJcysSIiIkNOPcmup15kRUT6YHIJJi5Addn9TFxwr+VAmVgREZFNQD3J1g1CJlhEZOhN1aC6AhUfclZXgBoc3t71rBXEioiIiIiISP4qo3D0avf3xIXcZqsgVkTacoRJHmGqo8+eogrAB5ho+7P3cYj7OdzRckVERERkeOiZWBFpyyNMrQWj7TpIhYNU2v7cKaodB84iIiIiMlyUiRWRth2kwoc42rfldZK5FREREZHhpEysiIiIiIiIlEbLTKwx5iPAjwBnrLWvT3n/vcD/BhjgIvA+a+0x/94z/rUVYNlae29+RRcRERERkU1vcsn1hJumuux+N+tU6NDWXHrMlf7Jkon9LeCBJu+fAt5mrX0D8IvAZOL977HWVhTAioiIiIhI7sJQLmkqY/UhXtJUVxoHwDKwWmZirbWPGGNubfL+56J/Pw/cmEO5REREREREsomHcmlHjsO+SP/k/UzsTwPxEOIW+IQx5kvGmKZjYxhjDhtjHjPGPPbSSy/lXCwREREREREZBrn1TmyM+R5cEPvW6OW3WmtPG2NeAXzSGPNNa+0jaZ+31k7imyLfe++9Nq9yiZTS7CTMdTikzFLV/X5morPP7zkEezUeq4iIiIgMplwyscaYNwK/AbzTWns2vG6tPe1/nwF+H3hzHssTGXpzU/VgtF3bK+6nE0vVzoNnEREREZE+6DoTa4y5Gfg94CestSei168CRqy1F/3fPwh8sNvliWwa2ytw69H+LrPT7K2I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\n",
      "text/plain": [
       "<Figure size 1152x576 with 1 Axes>"
      ]
     },
     "metadata": {
      "needs_background": "light"
     },
     "output_type": "display_data"
    }
   ],
   "source": [
    "mp.plot_tree()"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "id": "f46231ef-d734-4e82-b71c-f1aaa7822e29",
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ],
 "metadata": {
  "kernelspec": {
   "display_name": "Python 3 (ipykernel)",
   "language": "python",
   "name": "python3"
  },
  "language_info": {
   "codemirror_mode": {
    "name": "ipython",
    "version": 3
   },
   "file_extension": ".py",
   "mimetype": "text/x-python",
   "name": "python",
   "nbconvert_exporter": "python",
   "pygments_lexer": "ipython3",
   "version": "3.7.11"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 5
}